diff --git a/ChangeLog.md b/ChangeLog.md
index c16f1ed66967..795e79877c72 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,90 @@
+## 5.2.0 - December 2020
+#### Az.Accounts
+* Managed to parse ExpiresOn time from raw token if could not get from underlying library
+* Improved warning message if Interactive authentication is unavailable
+
+#### Az.ApiManagement
+* [Breaking change] 'New-AzApiManagementProduct' by default has no subscription limit.
+
+#### Az.Compute
+* Edited Get-AzVm to filter by '-Name' prior to checking for throttling due to too many resources.
+* New cmdlet 'Start-AzVmssRollingExtensionUpgrade'.
+
+#### Az.ContainerRegistry
+* Supported parameter 'Name' for and value from pipeline input for 'Get-AzContainerRegistryUsage' [#13605]
+* Polished exceptions for 'Connect-AzContainerRegistry'
+
+#### Az.DataFactory
+* Updated ADF .Net SDK version to 4.13.0
+
+#### Az.HealthcareApis
+* Added support for customer managed keys
+
+#### Az.IotHub
+* Fixed an issue of SAS token.
+
+#### Az.KeyVault
+* Supported 'all' as an option when setting key vault access policies
+* Supported new version of SecretManagement module [#13366]
+* Supported ByteArray, String, PSCredential and Hashtable for 'SecretValue' in SecretManagementModule [#12190]
+* [Breaking change] redesigned the API surface of cmdlets related to managed HSM.
+
+#### Az.Monitor
+* Changed parameter 'Rule' of 'New-AzAutoscaleProfile' to accept empty list. [#12903]
+* Added new cmdlets to support creating diagnostic settings more flexible:
+ * 'Get-AzDiagnosticSettingCategory'
+ * 'New-AzDiagnosticSetting'
+ * 'New-AzDiagnosticDetailSetting'
+
+#### Az.RecoveryServices
+* Made help text and parameter set name changes to 'Restore-AzRecoveryServicesBackupItem' cmdlet.
+
+#### Az.Resources
+* Added '-Tag' parameter support to 'Set-AzTemplateSpec' and 'New-AzTemplateSpec'
+* Added Tag display support to default formatter for Template Specs
+
+#### Az.ServiceFabric
+* Added example to 'Set-AzServiceFabricSetting' with SettingsSectionDescription param
+* Updated application related cmdlets to call out that support is only for ARM deployed resources
+* Marked for deprecation cluster cert cmdlets 'Add-AzureRmServiceFabricClusterCertificate' and 'Remove-AzureRmServiceFabricClusterCertificate'
+
+#### Az.Sql
+* Added SecondaryType to the following:
+ - 'New-AzSqlDatabase'
+ - 'Set-AzSqlDatabase'
+ - 'New-AzSqlDatabaseSecondary'
+* Added HighAvailabilityReplicaCount to the following:
+ - 'New-AzSqlDatabase'
+ - 'Set-AzSqlDatabase'
+* Made ReadReplicaCount an alias of HighAvailabilityReplicaCount in the following:
+ - 'New-AzSqlDatabase'
+ - 'Set-AzSqlDatabase'
+
+#### Az.Storage
+* Supported upload Azure File size up to 4 TiB
+ - 'Set-AzStorageFileContent'
+* Upgraded Azure.Storage.Blobs to 12.7.0
+* Upgraded Azure.Storage.Files.Shares to 12.5.0
+* Upgraded Azure.Storage.Files.DataLake to 12.5.0
+
+#### Az.StorageSync
+* Added Sync tiering policy feature with download policy and local cache mode
+
+#### Az.Websites
+* Prevent duplicate access restriction rules
+
+### Thanks to our community contributors
+* Andrew Dawson (@dawsonar802), Update Get-AzKeyVaultCertificate.md - Get cert and save it as pfx section to work with PowerShell Core (#13557)
+* @iviark, Healthcare APIs Powershell BYOK Updates (#13518)
+* John Duckmanton (@johnduckmanton), Correct spelling of TagPatchOperation (#13508)
+* Michael James (@mikejwhat)
+ * Get-AzLogicAppRunHistory Help Tidy (#13513)
+* Richard de Zwart (@mountain65)
+ * Update Update-AzAppConfigurationStore.md (#13485)
+ * Update New-AzCosmosDBAccount.md (#13490)
+* @SteppingRazor, New-AzApiManagementProduct: Change SubscriptionsLimit parameter default value to None (#13457)
+* Steve Burkett (@SteveBurkettNZ), Fix Typo for WorkspaceResourceId parameter in example (#13589)
+
## 5.1.0 - November 2020
#### Az.Accounts
* Fixed an issue that TenantId may be not respected if using 'Connect-AzAccount -DeviceCode'[#13477]
diff --git a/setup/generate.ps1 b/setup/generate.ps1
index b0364e47c074..22008fb72575 100644
--- a/setup/generate.ps1
+++ b/setup/generate.ps1
@@ -37,7 +37,7 @@ if( (-not (get-command -ea 0 light)) -or (-not (get-command -ea 0 heat)) -or (-n
$outputName ="Az-Cmdlets"
# generate the product name from the current month/year.
-$productName = "Microsoft Azure PowerShell - November 2020"
+$productName = "Microsoft Azure PowerShell - December 2020"
# where to put temp files
$tmp = Join-Path $env:temp azure-cmdlets-tmp
diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1
index 9ab029b524f3..43e7d7c1b5cb 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: 11/18/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.2.1'
+ModuleVersion = '2.2.2'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -143,7 +143,8 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Fixed the issue that incorrectly use Task.Result causes unclear error message if browser is not avaialable for Interactive auth'
+ ReleaseNotes = '* Managed to parse ExpiresOn time from raw token if could not get from underlying library
+* Improved warning message if Interactive authentication is unavailable'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md
index 726fa1d21aa1..c61a19362c98 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 2.2.2
* Managed to parse ExpiresOn time from raw token if could not get from underlying library
* Improved warning message if Interactive authentication is unavailable
diff --git a/src/Accounts/Accounts/Properties/AssemblyInfo.cs b/src/Accounts/Accounts/Properties/AssemblyInfo.cs
index f85b8a2d24c6..9bebd08bc252 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("2.2.1")]
-[assembly: AssemblyFileVersion("2.2.1")]
+[assembly: AssemblyVersion("2.2.2")]
+[assembly: AssemblyFileVersion("2.2.2")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")]
#endif
diff --git a/src/Accounts/Authentication/Properties/AssemblyInfo.cs b/src/Accounts/Authentication/Properties/AssemblyInfo.cs
index 08b9055fd15f..6e42c9900d69 100644
--- a/src/Accounts/Authentication/Properties/AssemblyInfo.cs
+++ b/src/Accounts/Authentication/Properties/AssemblyInfo.cs
@@ -43,5 +43,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.*")]
-[assembly: AssemblyVersion("2.2.1")]
-[assembly: AssemblyFileVersion("2.2.1")]
+[assembly: AssemblyVersion("2.2.2")]
+[assembly: AssemblyFileVersion("2.2.2")]
diff --git a/src/Accounts/Authenticators/Properties/AssemblyInfo.cs b/src/Accounts/Authenticators/Properties/AssemblyInfo.cs
index 04401053172c..cbddae1960b5 100644
--- a/src/Accounts/Authenticators/Properties/AssemblyInfo.cs
+++ b/src/Accounts/Authenticators/Properties/AssemblyInfo.cs
@@ -1,4 +1,4 @@
-// ----------------------------------------------------------------------------------
+// ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// Licensed under the Apache License, Version 2.0 (the "License");
@@ -48,5 +48,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.*")]
-[assembly: AssemblyVersion("2.2.1")]
-[assembly: AssemblyFileVersion("2.2.1")]
\ No newline at end of file
+[assembly: AssemblyVersion("2.2.2")]
+[assembly: AssemblyFileVersion("2.2.2")]
diff --git a/src/Advisor/Advisor/Az.Advisor.psd1 b/src/Advisor/Advisor/Az.Advisor.psd1
index 44ce10cc5b90..40984391b67d 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 8744237e2825..71fa7baffb5d 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 107f39018d1d..939c877bc211 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 c9efce8da3ea..cd5f9c500994 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Analysis.dll'
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs
index 590879718980..0f1cd4ab32f5 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs
@@ -42,5 +42,5 @@
// 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: AssemblyFileVersion("2.1.0")]
+[assembly: AssemblyVersion("2.2.0")]
+[assembly: AssemblyFileVersion("2.2.0")]
diff --git a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
index 5ce6f55555ef..f4e61400006c 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: 7/30/2020
+# Generated on: 12/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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.ApiManagement.dll',
@@ -207,18 +207,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added new ''Add-AzApiManagementApiToGateway'' cmdlet.
-* Added new ''Get-AzApiManagementGateway'' cmdlet.
-* Added new ''Get-AzApiManagementGatewayHostnameConfiguration'' cmdlet.
-* Added new ''Get-AzApiManagementGatewayKey'' cmdlet.
-* Added new ''New-AzApiManagementGateway'' cmdlet.
-* Added new ''New-AzApiManagementGatewayHostnameConfiguration'' cmdlet.
-* Added new ''New-AzApiManagementResourceLocationObject'' cmdlet.
-* Added new ''Remove-AzApiManagementApiFromGateway'' cmdlet.
-* Added new ''Remove-AzApiManagementGateway'' cmdlet.
-* Added new ''Remove-AzApiManagementGatewayHostnameConfiguration'' cmdlet.
-* Added new ''Update-AzApiManagementGateway'' cmdlet.
-* Added new optional [-GatewayId] parameter to the ''Get-AzApiManagementApi'' cmdlet.'
+ ReleaseNotes = '* [Breaking change] ''New-AzApiManagementProduct'' by default has no subscription limit.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md
index 5f075223e3b8..654387b11fb0 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 2.2.0
* [Breaking change] `New-AzApiManagementProduct` by default has no subscription limit.
## Version 2.1.0
diff --git a/src/ApiManagement/ApiManagement/Properties/AssemblyInfo.cs b/src/ApiManagement/ApiManagement/Properties/AssemblyInfo.cs
index 28c28a971d9e..01e3ddb29519 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("2.1.0")]
-[assembly: AssemblyFileVersion("2.1.0")]
+[assembly: AssemblyVersion("2.2.0")]
+[assembly: AssemblyFileVersion("2.2.0")]
diff --git a/src/AppConfiguration/Az.AppConfiguration.psd1 b/src/AppConfiguration/Az.AppConfiguration.psd1
index a9f7a366c1ac..41e77346e211 100644
--- a/src/AppConfiguration/Az.AppConfiguration.psd1
+++ b/src/AppConfiguration/Az.AppConfiguration.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.AppConfiguration.private.dll'
diff --git a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1
index 23f408f26381..b7bab810f69d 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 445943b34703..554ab5a9972d 100644
--- a/src/Attestation/Attestation/Az.Attestation.psd1
+++ b/src/Attestation/Attestation/Az.Attestation.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Attestation.dll',
diff --git a/src/Automation/Automation/Az.Automation.psd1 b/src/Automation/Automation/Az.Automation.psd1
index 9f0824494497..8de14a81838c 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 0497b4f02fa5..e30de5934d67 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 22c411d1c2eb..37dba82b1017 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Billing.dll',
diff --git a/src/Blockchain/Az.Blockchain.psd1 b/src/Blockchain/Az.Blockchain.psd1
index 2a24391e8f5f..48b630bc4043 100644
--- a/src/Blockchain/Az.Blockchain.psd1
+++ b/src/Blockchain/Az.Blockchain.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.Blockchain.private.dll'
diff --git a/src/Blueprint/Blueprint/Az.Blueprint.psd1 b/src/Blueprint/Blueprint/Az.Blueprint.psd1
index 13d2ccac1222..8879890927b8 100644
--- a/src/Blueprint/Blueprint/Az.Blueprint.psd1
+++ b/src/Blueprint/Blueprint/Az.Blueprint.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Blueprint.dll'
diff --git a/src/Cdn/Cdn/Az.Cdn.psd1 b/src/Cdn/Cdn/Az.Cdn.psd1
index 5653100519ba..8b0b3ec2cd9a 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Cdn.dll'
diff --git a/src/CloudService/Az.CloudService.psd1 b/src/CloudService/Az.CloudService.psd1
index 56537b25c1d0..5776ae5906d6 100644
--- a/src/CloudService/Az.CloudService.psd1
+++ b/src/CloudService/Az.CloudService.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.CloudService.private.dll'
diff --git a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1
index fbf06c140ca2..f22ea911df61 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 4e41a23194a6..03473341aadc 100644
--- a/src/Compute/Compute/Az.Compute.psd1
+++ b/src/Compute/Compute/Az.Compute.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 10/23/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '4.6.0'
+ModuleVersion = '4.7.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Compute.dll',
@@ -171,7 +171,8 @@ CmdletsToExport = 'Remove-AzAvailabilitySet', 'Get-AzAvailabilitySet',
'Set-AzVmssOrchestrationServiceState', 'New-AzDiskAccess',
'Remove-AzDiskAccess', 'Get-AzDiskAccess',
'Invoke-AzVmPatchAssessment',
- 'Get-AzDiskEncryptionSetAssociatedResource', 'Start-AzVmssRollingExtensionUpgrade'
+ 'Get-AzDiskEncryptionSetAssociatedResource',
+ 'Start-AzVmssRollingExtensionUpgrade'
# Variables to export from this module
# VariablesToExport = @()
@@ -208,11 +209,8 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added ''-VmssId'' parameter to ''New-AzVm''
-* Added ''PlatformFaultDomainCount'' parameter to the ''New-AzVmss'' cmdlet.
-* New cmdlet ''Get-AzDiskEncryptionSetAssociatedResource''
-* Added ''Tier'' and ''LogicalSectorSize'' optional parameters to the New-AzDiskConfig cmdlet.
-* Added ''Tier'', ''MaxSharesCount'', ''DiskIOPSReadOnly'', and ''DiskMBpsReadOnly'' optional parameters to the ''New-AzDiskUpdateConfig'' cmdlet. '
+ ReleaseNotes = '* Edited Get-AzVm to filter by ''-Name'' prior to checking for throttling due to too many resources.
+* New cmdlet ''Start-AzVmssRollingExtensionUpgrade''.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md
index c5cf0c7d0e39..52f46c18f3c3 100644
--- a/src/Compute/Compute/ChangeLog.md
+++ b/src/Compute/Compute/ChangeLog.md
@@ -20,6 +20,8 @@
-->
## Upcoming Release
+
+## Version 4.7.0
* Edited Get-AzVm to filter by `-Name` prior to checking for throttling due to too many resources.
* New cmdlet `Start-AzVmssRollingExtensionUpgrade`.
diff --git a/src/Compute/Compute/Properties/AssemblyInfo.cs b/src/Compute/Compute/Properties/AssemblyInfo.cs
index f190ec7ffb39..aec300e86562 100644
--- a/src/Compute/Compute/Properties/AssemblyInfo.cs
+++ b/src/Compute/Compute/Properties/AssemblyInfo.cs
@@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")]
-[assembly: AssemblyVersion("4.6.0")]
-[assembly: AssemblyFileVersion("4.6.0")]
+[assembly: AssemblyVersion("4.7.0")]
+[assembly: AssemblyFileVersion("4.7.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Compute.Test")]
#endif
diff --git a/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1 b/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1
index 418f74bd74c8..dcc3cf3c0995 100644
--- a/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1
+++ b/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1
@@ -10,7 +10,7 @@
PowerShellVersion = '5.1'
DotNetFrameworkVersion = '4.7.2'
RequiredAssemblies = './bin/Az.ConnectedKubernetes.private.dll'
- RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.1'; })
+ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
FormatsToProcess = './Az.ConnectedKubernetes.format.ps1xml'
FunctionsToExport = 'Get-AzConnectedKubernetes', 'New-AzConnectedKubernetes', 'Remove-AzConnectedKubernetes', 'Update-AzConnectedKubernetes'
AliasesToExport = '*'
diff --git a/src/ConnectedMachine/Az.ConnectedMachine.psd1 b/src/ConnectedMachine/Az.ConnectedMachine.psd1
index af721100ef40..738c38e55730 100644
--- a/src/ConnectedMachine/Az.ConnectedMachine.psd1
+++ b/src/ConnectedMachine/Az.ConnectedMachine.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'bin\Az.ConnectedMachine.private.dll'
diff --git a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1
index 980a3a0e7a0f..7930b1fe3a27 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 382cbd4ae031..3b143b503bc0 100644
--- a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1
+++ b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 10/23/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.0.0'
+ModuleVersion = '2.1.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.ContainerRegistry.dll',
@@ -125,10 +125,8 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* [Breaking Change] Updates API version to 2020-05-01
-* [Breaking Change] Removed SKU ''Classic'' and parameter ''StorageAccountName'' from ''New-AzContainerRegistry''
-* Added New cmdlets: ''Connect-AzContainerRegistry'', ''Import-AzContainerRegistry'', ''Get-AzContainerRegistryUsage'', ''New-AzContainerRegistryNetworkRule'', ''Set-AzContainerRegistryNetworkRule''
-* Added new parameter ''NetworkRuleSet'' to ''Update-AzContainerRegistry'''
+ ReleaseNotes = '* Supported parameter ''Name'' for and value from pipeline input for ''Get-AzContainerRegistryUsage'' [#13605]
+* Polished exceptions for ''Connect-AzContainerRegistry'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/ContainerRegistry/ContainerRegistry/ChangeLog.md b/src/ContainerRegistry/ContainerRegistry/ChangeLog.md
index 235ad43ef4de..cf238796e9ad 100644
--- a/src/ContainerRegistry/ContainerRegistry/ChangeLog.md
+++ b/src/ContainerRegistry/ContainerRegistry/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 2.1.0
* Supported parameter `Name` for and value from pipeline input for `Get-AzContainerRegistryUsage` [#13605]
* Polished exceptions for `Connect-AzContainerRegistry`
diff --git a/src/ContainerRegistry/ContainerRegistry/Properties/AssemblyInfo.cs b/src/ContainerRegistry/ContainerRegistry/Properties/AssemblyInfo.cs
index 52bff13f000d..cf87c5d71654 100644
--- a/src/ContainerRegistry/ContainerRegistry/Properties/AssemblyInfo.cs
+++ b/src/ContainerRegistry/ContainerRegistry/Properties/AssemblyInfo.cs
@@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("FE330703-623A-4C08-9DA7-1C63B4058034")]
-[assembly: AssemblyVersion("2.0.0")]
-[assembly: AssemblyFileVersion("2.0.0")]
+[assembly: AssemblyVersion("2.1.0")]
+[assembly: AssemblyFileVersion("2.1.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry.Test")]
#endif
diff --git a/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1 b/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1
index cc59c8d86309..6f96c8acd052 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.CosmosDB.dll'
diff --git a/src/CostManagement/Az.CostManagement.psd1 b/src/CostManagement/Az.CostManagement.psd1
index bef24deb4b89..cf81843f4c74 100644
--- a/src/CostManagement/Az.CostManagement.psd1
+++ b/src/CostManagement/Az.CostManagement.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.CostManagement.private.dll'
diff --git a/src/CustomProviders/Az.CustomProviders.psd1 b/src/CustomProviders/Az.CustomProviders.psd1
index f9e95910204a..c0e5b5fcdcb7 100644
--- a/src/CustomProviders/Az.CustomProviders.psd1
+++ b/src/CustomProviders/Az.CustomProviders.psd1
@@ -10,7 +10,7 @@
PowerShellVersion = '5.1'
DotNetFrameworkVersion = '4.7.2'
RequiredAssemblies = './bin/Az.CustomProviders.private.dll'
- RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.1'; })
+ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
FormatsToProcess = './Az.CustomProviders.format.ps1xml'
FunctionsToExport = 'Get-AzCustomProvider', 'Get-AzCustomProviderAssociation', 'New-AzCustomProvider', 'New-AzCustomProviderAssociation', 'Remove-AzCustomProvider', 'Remove-AzCustomProviderAssociation', 'Update-AzCustomProvider'
AliasesToExport = '*'
diff --git a/src/DataBox/DataBox/Az.DataBox.psd1 b/src/DataBox/DataBox/Az.DataBox.psd1
index 18c105a5fa67..c5eeed669024 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 c2c5b4b63f73..2cfe4a79f718 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataBoxEdge.dll'
diff --git a/src/DataFactory/DataFactories/Properties/AssemblyInfo.cs b/src/DataFactory/DataFactories/Properties/AssemblyInfo.cs
index 33cc12eb3b52..94bfcf52b1df 100644
--- a/src/DataFactory/DataFactories/Properties/AssemblyInfo.cs
+++ b/src/DataFactory/DataFactories/Properties/AssemblyInfo.cs
@@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")]
-[assembly: AssemblyVersion("1.11.1")]
-[assembly: AssemblyFileVersion("1.11.1")]
+[assembly: AssemblyVersion("1.11.2")]
+[assembly: AssemblyFileVersion("1.11.2")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.DataFactories.Test")]
#endif
diff --git a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1
index 5988ea63ebd1..1a3903d7e8db 100644
--- a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1
+++ b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 11/13/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.11.1'
+ModuleVersion = '1.11.2'
# 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataFactory.dll',
@@ -172,7 +172,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Improved error message of ''New-AzDataFactoryV2LinkedServiceEncryptedCredential'' command'
+ ReleaseNotes = '* Updated ADF .Net SDK version to 4.13.0'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/DataFactory/DataFactoryV2/Changelog.md b/src/DataFactory/DataFactoryV2/Changelog.md
index c6f55d869bae..dd1af8a2c48b 100644
--- a/src/DataFactory/DataFactoryV2/Changelog.md
+++ b/src/DataFactory/DataFactoryV2/Changelog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.11.2
* Updated ADF .Net SDK version to 4.13.0
## Version 1.11.1
diff --git a/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs b/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs
index a2e2da0049c0..844358c5f574 100644
--- a/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs
+++ b/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs
@@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")]
-[assembly: AssemblyVersion("1.11.1")]
-[assembly: AssemblyFileVersion("1.11.1")]
+[assembly: AssemblyVersion("1.11.2")]
+[assembly: AssemblyFileVersion("1.11.2")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.Test")]
#endif
diff --git a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1
index a4ab3b821578..73fd5bbfb4eb 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 e4154a85f823..b6d686073afc 100644
--- a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1
+++ b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Store.dll',
diff --git a/src/DataMigration/DataMigration/Az.DataMigration.psd1 b/src/DataMigration/DataMigration/Az.DataMigration.psd1
index 3641cefd605b..308d944d8ed0 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 c4f9f134a8b7..b4a106ee6d51 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataShare.dll'
diff --git a/src/Databricks/Az.Databricks.psd1 b/src/Databricks/Az.Databricks.psd1
index 6a7cbaa70cbb..2f051938b26b 100644
--- a/src/Databricks/Az.Databricks.psd1
+++ b/src/Databricks/Az.Databricks.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.Databricks.private.dll'
diff --git a/src/DedicatedHsm/Az.DedicatedHsm.psd1 b/src/DedicatedHsm/Az.DedicatedHsm.psd1
index 18b91cab0a71..b1e1dd1c55fb 100644
--- a/src/DedicatedHsm/Az.DedicatedHsm.psd1
+++ b/src/DedicatedHsm/Az.DedicatedHsm.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.DedicatedHsm.private.dll'
diff --git a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1
index 5e2335430ccd..72a98a030762 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DeploymentManager.dll'
diff --git a/src/DesktopVirtualization/Az.DesktopVirtualization.psd1 b/src/DesktopVirtualization/Az.DesktopVirtualization.psd1
index f7cb2bbcd18b..290bdfbf0ae3 100644
--- a/src/DesktopVirtualization/Az.DesktopVirtualization.psd1
+++ b/src/DesktopVirtualization/Az.DesktopVirtualization.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.DesktopVirtualization.private.dll'
diff --git a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1
index f3e74d31c939..6b991fa5f070 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 7c10200fa1f8..d0d2ca79d936 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 98a54ff744df..87a78871b43d 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DeviceProvisioningServices.dll',
diff --git a/src/DigitalTwins/Az.DigitalTwins.psd1 b/src/DigitalTwins/Az.DigitalTwins.psd1
index 6eedf8a8b089..43b3e22d9eb0 100644
--- a/src/DigitalTwins/Az.DigitalTwins.psd1
+++ b/src/DigitalTwins/Az.DigitalTwins.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.DigitalTwins.private.dll'
diff --git a/src/Dns/Dns/Az.Dns.psd1 b/src/Dns/Dns/Az.Dns.psd1
index d3a91eb8e719..54714a7b8c8d 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 f234e8a571bb..35125816c805 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 ae6a6cd400d1..a7b903983b39 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 dfad46b81cc1..0f3e388a6be4 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.FrontDoor.dll'
diff --git a/src/Functions/Az.Functions.psd1 b/src/Functions/Az.Functions.psd1
index 4ae2d8f1ef04..c52799d9de1a 100644
--- a/src/Functions/Az.Functions.psd1
+++ b/src/Functions/Az.Functions.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'bin\Az.Functions.private.dll'
diff --git a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1
index 9a1b57908be1..f9eeac9df9ea 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 f7f5093dd025..f6a540732bc3 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.HDInsight.dll',
diff --git a/src/HPCCache/HPCCache/Az.HPCCache.psd1 b/src/HPCCache/HPCCache/Az.HPCCache.psd1
index b5d7fef11a2e..00b6bb2f6d28 100644
--- a/src/HPCCache/HPCCache/Az.HPCCache.psd1
+++ b/src/HPCCache/HPCCache/Az.HPCCache.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.StorageCache.dll'
diff --git a/src/HanaOnAzure/Az.HanaOnAzure.psd1 b/src/HanaOnAzure/Az.HanaOnAzure.psd1
index 9a6f39ca4aa9..8c62db52a831 100644
--- a/src/HanaOnAzure/Az.HanaOnAzure.psd1
+++ b/src/HanaOnAzure/Az.HanaOnAzure.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 8/21/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
RootModule = './Az.HanaOnAzure.psm1'
# Version number of this module.
-ModuleVersion = '0.2.0'
+ModuleVersion = '0.3.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.HanaOnAzure.private.dll'
@@ -110,7 +110,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Fixed an issue in PowerShell prior to 7.0'
+ ReleaseNotes = '* Added byDict parameter set for New-AzSapMonitorProviderInstance'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/HanaOnAzure/ChangeLog.md b/src/HanaOnAzure/ChangeLog.md
index d5d1464bb538..069271e4e0f7 100644
--- a/src/HanaOnAzure/ChangeLog.md
+++ b/src/HanaOnAzure/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 0.3.0
* Added byDict parameter set for New-AzSapMonitorProviderInstance
## Version 0.2.0
diff --git a/src/HanaOnAzure/Properties/AssemblyInfo.cs b/src/HanaOnAzure/Properties/AssemblyInfo.cs
index 54b721e63f61..feb6948e4581 100644
--- a/src/HanaOnAzure/Properties/AssemblyInfo.cs
+++ b/src/HanaOnAzure/Properties/AssemblyInfo.cs
@@ -24,5 +24,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("1A2AE489-381B-47BF-91F0-99B42E4FC28B")]
-[assembly: AssemblyVersion("0.2.0")]
-[assembly: AssemblyFileVersion("0.2.0")]
+[assembly: AssemblyVersion("0.3.0")]
+[assembly: AssemblyFileVersion("0.3.0")]
diff --git a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1
index a0c590992e1c..ad47ec4ee929 100644
--- a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1
+++ b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 6/17/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.1.0'
+ModuleVersion = '1.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.HealthcareApis.dll'
@@ -110,8 +110,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Updated the SDK version to 1.1.0
-* Added support for Export settings and Managed Identity'
+ ReleaseNotes = '* Added support for customer managed keys'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/HealthcareApis/HealthcareApis/ChangeLog.md b/src/HealthcareApis/HealthcareApis/ChangeLog.md
index a1b2d4281f2a..48978c73a56e 100644
--- a/src/HealthcareApis/HealthcareApis/ChangeLog.md
+++ b/src/HealthcareApis/HealthcareApis/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.2.0
* Added support for customer managed keys
## Version 3.0.0
diff --git a/src/HealthcareApis/HealthcareApis/Properties/AssemblyInfo.cs b/src/HealthcareApis/HealthcareApis/Properties/AssemblyInfo.cs
index 26eb83984f2c..4abaa06f56da 100644
--- a/src/HealthcareApis/HealthcareApis/Properties/AssemblyInfo.cs
+++ b/src/HealthcareApis/HealthcareApis/Properties/AssemblyInfo.cs
@@ -45,5 +45,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("0.7.1")]
-[assembly: AssemblyVersion("1.1.0")]
-[assembly: AssemblyFileVersion("1.1.0")]
+[assembly: AssemblyVersion("1.2.0")]
+[assembly: AssemblyFileVersion("1.2.0")]
diff --git a/src/ImageBuilder/Az.ImageBuilder.psd1 b/src/ImageBuilder/Az.ImageBuilder.psd1
index 155cdba5e9e0..561e93cadcb7 100644
--- a/src/ImageBuilder/Az.ImageBuilder.psd1
+++ b/src/ImageBuilder/Az.ImageBuilder.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.ImageBuilder.private.dll'
diff --git a/src/ImportExport/Az.ImportExport.psd1 b/src/ImportExport/Az.ImportExport.psd1
index 4eeb91132417..5c6718a7cd8f 100644
--- a/src/ImportExport/Az.ImportExport.psd1
+++ b/src/ImportExport/Az.ImportExport.psd1
@@ -10,7 +10,7 @@
PowerShellVersion = '5.1'
DotNetFrameworkVersion = '4.7.2'
RequiredAssemblies = './bin/Az.ImportExport.private.dll'
- RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.1'; })
+ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
FormatsToProcess = './Az.ImportExport.format.ps1xml'
FunctionsToExport = 'Get-AzImportExport', 'Get-AzImportExportBitLockerKey', 'Get-AzImportExportLocation', 'New-AzImportExport', 'New-AzImportExportDriveListObject', 'Remove-AzImportExport', 'Update-AzImportExport'
AliasesToExport = '*'
diff --git a/src/IotCentral/IotCentral/Az.IotCentral.psd1 b/src/IotCentral/IotCentral/Az.IotCentral.psd1
index 04d5552debe7..b822efca6ce5 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 826bbe76f330..07926bad8ebc 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: 11/13/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.7.0'
+ModuleVersion = '2.7.1'
# 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.IotHub.dll',
@@ -159,7 +159,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Allowed tags in IoT Hub create cmdlet.'
+ ReleaseNotes = '* Fixed an issue of SAS token.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md
index 045ad9093e68..8e656a6425cd 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.7.1
* Fixed an issue of SAS token.
## Version 2.7.0
diff --git a/src/IotHub/IotHub/Properties/AssemblyInfo.cs b/src/IotHub/IotHub/Properties/AssemblyInfo.cs
index 52a479d3770c..14c2ca87cd9a 100644
--- a/src/IotHub/IotHub/Properties/AssemblyInfo.cs
+++ b/src/IotHub/IotHub/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("2.5.0")]
-[assembly: AssemblyVersion("2.7.0")]
-[assembly: AssemblyFileVersion("2.7.0")]
+[assembly: AssemblyVersion("2.7.1")]
+[assembly: AssemblyFileVersion("2.7.1")]
diff --git a/src/KeyVault/KeyVault/Az.KeyVault.psd1 b/src/KeyVault/KeyVault/Az.KeyVault.psd1
index c0201bf57b2d..853bd77ccb87 100644
--- a/src/KeyVault/KeyVault/Az.KeyVault.psd1
+++ b/src/KeyVault/KeyVault/Az.KeyVault.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 11/13/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '3.1.0'
+ModuleVersion = '3.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll',
@@ -73,14 +73,14 @@ RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll',
FormatsToProcess = 'KeyVault.format.ps1xml'
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
-NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll', '.\Az.KeyVault.Extension')
+NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll',
+ '.\Az.KeyVault.Extension')
# 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 = 'Add-AzKeyVaultCertificate',
- 'Update-AzKeyVaultCertificate',
+CmdletsToExport = 'Add-AzKeyVaultCertificate', 'Update-AzKeyVaultCertificate',
'Stop-AzKeyVaultCertificateOperation',
'Get-AzKeyVaultCertificateOperation',
'Import-AzKeyVaultCertificate', 'Add-AzKeyVaultCertificateContact',
@@ -92,14 +92,14 @@ CmdletsToExport = 'Add-AzKeyVaultCertificate',
'Remove-AzKeyVaultCertificateOperation',
'Set-AzKeyVaultCertificateIssuer',
'Set-AzKeyVaultCertificatePolicy', 'Get-AzKeyVaultManagedHsm',
- 'New-AzKeyVaultManagedHsm', 'Remove-AzKeyVaultManagedHsm', 'Update-AzKeyVaultManagedHsm',
- 'Get-AzKeyVault', 'New-AzKeyVault', 'Remove-AzKeyVault',
- 'Undo-AzKeyVaultRemoval', 'Backup-AzKeyVault',
+ 'New-AzKeyVaultManagedHsm', 'Remove-AzKeyVaultManagedHsm',
+ 'Update-AzKeyVaultManagedHsm', 'Get-AzKeyVault', 'New-AzKeyVault',
+ 'Remove-AzKeyVault', 'Undo-AzKeyVaultRemoval', 'Backup-AzKeyVault',
'Restore-AzKeyVault', 'Get-AzKeyVaultRoleDefinition',
'Get-AzKeyVaultRoleAssignment', 'New-AzKeyVaultRoleAssignment',
- 'Remove-AzKeyVaultRoleAssignment',
- 'Remove-AzKeyVaultAccessPolicy', 'Set-AzKeyVaultAccessPolicy',
- 'Backup-AzKeyVaultKey', 'Get-AzKeyVaultKey', 'Get-AzKeyVaultSecret',
+ 'Remove-AzKeyVaultRoleAssignment', 'Remove-AzKeyVaultAccessPolicy',
+ 'Set-AzKeyVaultAccessPolicy', 'Backup-AzKeyVaultKey',
+ 'Get-AzKeyVaultKey', 'Get-AzKeyVaultSecret',
'Undo-AzKeyVaultKeyRemoval', 'Undo-AzKeyVaultSecretRemoval',
'Add-AzKeyVaultKey', 'Remove-AzKeyVaultKey', 'Update-AzKeyVault',
'New-AzKeyVaultNetworkRuleSetObject', 'Remove-AzKeyVaultSecret',
@@ -161,7 +161,10 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Supported updating key vault tag'
+ ReleaseNotes = '* Supported ''all'' as an option when setting key vault access policies
+* Supported new version of SecretManagement module [#13366]
+* Supported ByteArray, String, PSCredential and Hashtable for ''SecretValue'' in SecretManagementModule [#12190]
+* [Breaking change] redesigned the API surface of cmdlets related to managed HSM.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/KeyVault/KeyVault/ChangeLog.md b/src/KeyVault/KeyVault/ChangeLog.md
index 93ef8e94e0a1..bf728a55f03c 100644
--- a/src/KeyVault/KeyVault/ChangeLog.md
+++ b/src/KeyVault/KeyVault/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 3.2.0
* Supported "all" as an option when setting key vault access policies
* Supported new version of SecretManagement module [#13366]
* Supported ByteArray, String, PSCredential and Hashtable for `SecretValue` in SecretManagementModule [#12190]
diff --git a/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs b/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs
index 1280d74cab50..aa80ba8b4ea8 100644
--- a/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs
+++ b/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs
@@ -29,8 +29,8 @@
[assembly: CLSCompliant(false)]
[assembly: Guid("2994548F-69B9-4DC2-8D19-52CC0C0C85BC")]
-[assembly: AssemblyVersion("3.1.0")]
-[assembly: AssemblyFileVersion("3.1.0")]
+[assembly: AssemblyVersion("3.2.0")]
+[assembly: AssemblyFileVersion("3.2.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.KeyVault.Test")]
[assembly: InternalsVisibleTo("SecurityDomain.Test")]
diff --git a/src/KubernetesConfiguration/Az.KubernetesConfiguration.psd1 b/src/KubernetesConfiguration/Az.KubernetesConfiguration.psd1
index 8881197c1a34..d18b780fadfe 100644
--- a/src/KubernetesConfiguration/Az.KubernetesConfiguration.psd1
+++ b/src/KubernetesConfiguration/Az.KubernetesConfiguration.psd1
@@ -10,7 +10,7 @@
PowerShellVersion = '5.1'
DotNetFrameworkVersion = '4.7.2'
RequiredAssemblies = './bin/Az.KubernetesConfiguration.private.dll'
- RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.1'; })
+ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
FormatsToProcess = './Az.KubernetesConfiguration.format.ps1xml'
FunctionsToExport = 'Get-AzKubernetesConfiguration', 'New-AzKubernetesConfiguration', 'Remove-AzKubernetesConfiguration'
AliasesToExport = '*'
diff --git a/src/Kusto/Az.Kusto.psd1 b/src/Kusto/Az.Kusto.psd1
index b6a8b32a4e6b..c1ee9e539f26 100644
--- a/src/Kusto/Az.Kusto.psd1
+++ b/src/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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.Kusto.private.dll'
diff --git a/src/LogicApp/LogicApp/Az.LogicApp.psd1 b/src/LogicApp/LogicApp/Az.LogicApp.psd1
index 83138a6858b7..3fedbdfa4174 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 c3b95493c285..aa49a3304418 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 92e0cb80710f..bb590a19f44c 100644
--- a/src/Maintenance/Maintenance/Az.Maintenance.psd1
+++ b/src/Maintenance/Maintenance/Az.Maintenance.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Maintenance.dll'
diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1
index 6bf9f433168a..c0b4277cb096 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 108d8af3c265..ab82e8b85ca5 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 70f8a6ab0d09..2991c1340f0b 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 564538986345..715d74b08be0 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Maps.dll'
diff --git a/src/MariaDb/Az.MariaDb.psd1 b/src/MariaDb/Az.MariaDb.psd1
index ef83f0962b07..9101446b66ab 100644
--- a/src/MariaDb/Az.MariaDb.psd1
+++ b/src/MariaDb/Az.MariaDb.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.MariaDb.private.dll'
diff --git a/src/Marketplace/Marketplace/Az.Marketplace.psd1 b/src/Marketplace/Marketplace/Az.Marketplace.psd1
index 8ff2a1dd4a00..7c7e07c0e36b 100644
--- a/src/Marketplace/Marketplace/Az.Marketplace.psd1
+++ b/src/Marketplace/Marketplace/Az.Marketplace.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Marketplace.dll'
diff --git a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1
index f62483711742..5ddfe66f9d14 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 a49a01037ae0..3ce2085e1258 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Media.dll'
diff --git a/src/Migrate/Az.Migrate.psd1 b/src/Migrate/Az.Migrate.psd1
index 4ac595a22a11..1726f2ee1f9f 100644
--- a/src/Migrate/Az.Migrate.psd1
+++ b/src/Migrate/Az.Migrate.psd1
@@ -52,7 +52,7 @@
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
- RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.1'; })
+ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.Migrate.private.dll'
diff --git a/src/MixedReality/MixedReality/Az.MixedReality.psd1 b/src/MixedReality/MixedReality/Az.MixedReality.psd1
index e27f501a77bb..8298cfc88819 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 1d6b5b93407a..80b0a1500a41 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: 9/29/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.2.0'
+ModuleVersion = '2.3.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Monitor.dll', 'AutoMapper.dll'
@@ -76,24 +76,23 @@ 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-AzMetricDefinition', 'Get-AzMetric', 'Remove-AzLogProfile',
'Get-AzLogProfile', 'Add-AzLogProfile', 'Get-AzActivityLog',
- 'New-AzDiagnosticSetting',
- 'New-AzDiagnosticDetailSetting',
+ 'New-AzDiagnosticSetting', 'New-AzDiagnosticDetailSetting',
'Set-AzDiagnosticSetting', 'Get-AzDiagnosticSetting',
- 'Get-AzDiagnosticSettingCategory',
- 'Remove-AzDiagnosticSetting', 'New-AzAutoscaleNotification',
- 'New-AzAutoscaleProfile', 'New-AzAutoscaleRule',
- 'Add-AzAutoscaleSetting', 'Get-AzAutoscaleHistory',
- 'Get-AzAutoscaleSetting', 'New-AzAutoscaleWebhook',
- 'Remove-AzAutoscaleSetting', 'Add-AzMetricAlertRule',
- 'Add-AzWebtestAlertRule', 'Get-AzAlertHistory', 'Get-AzAlertRule',
- 'New-AzAlertRuleEmail', 'New-AzAlertRuleWebhook',
- 'Remove-AzAlertRule', 'Set-AzActivityLogAlert',
- 'Get-AzActivityLogAlert', 'New-AzActionGroup',
- 'New-AzActivityLogAlertCondition', 'Enable-AzActivityLogAlert',
- 'Disable-AzActivityLogAlert', 'Remove-AzActivityLogAlert',
- 'New-AzActionGroupReceiver', 'Set-AzActionGroup', 'Get-AzActionGroup',
- 'Remove-AzActionGroup', 'New-AzMetricFilter',
- 'Add-AzMetricAlertRuleV2', 'Get-AzMetricAlertRuleV2',
+ 'Get-AzDiagnosticSettingCategory', 'Remove-AzDiagnosticSetting',
+ 'New-AzAutoscaleNotification', 'New-AzAutoscaleProfile',
+ 'New-AzAutoscaleRule', 'Add-AzAutoscaleSetting',
+ 'Get-AzAutoscaleHistory', 'Get-AzAutoscaleSetting',
+ 'New-AzAutoscaleWebhook', 'Remove-AzAutoscaleSetting',
+ 'Add-AzMetricAlertRule', 'Add-AzWebtestAlertRule',
+ 'Get-AzAlertHistory', 'Get-AzAlertRule', 'New-AzAlertRuleEmail',
+ 'New-AzAlertRuleWebhook', 'Remove-AzAlertRule',
+ 'Set-AzActivityLogAlert', 'Get-AzActivityLogAlert',
+ 'New-AzActionGroup', 'New-AzActivityLogAlertCondition',
+ 'Enable-AzActivityLogAlert', 'Disable-AzActivityLogAlert',
+ 'Remove-AzActivityLogAlert', 'New-AzActionGroupReceiver',
+ 'Set-AzActionGroup', 'Get-AzActionGroup', 'Remove-AzActionGroup',
+ 'New-AzMetricFilter', 'Add-AzMetricAlertRuleV2',
+ 'Get-AzMetricAlertRuleV2',
'New-AzMetricAlertRuleV2DimensionSelection',
'New-AzMetricAlertRuleV2Criteria', 'Remove-AzMetricAlertRuleV2',
'New-AzScheduledQueryRuleSource',
@@ -145,8 +144,11 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Fixed the bug that warning message cannot be suppressed. [#12889]
-* Supported ''SkipMetricValidation'' parameter in alert rule criteria. Allows creating an alert rule on a custom metric that isn''t yet emitted, by causing the metric validation to be skipped.'
+ ReleaseNotes = '* Changed parameter ''Rule'' of ''New-AzAutoscaleProfile'' to accept empty list. [#12903]
+* Added new cmdlets to support creating diagnostic settings more flexible:
+ * ''Get-AzDiagnosticSettingCategory''
+ * ''New-AzDiagnosticSetting''
+ * ''New-AzDiagnosticDetailSetting'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md
index 8f14cf89180b..1c0bbcfbdc6e 100644
--- a/src/Monitor/Monitor/ChangeLog.md
+++ b/src/Monitor/Monitor/ChangeLog.md
@@ -19,6 +19,8 @@
-->
## Upcoming Release
+
+## Version 2.3.0
* Changed parameter `Rule` of `New-AzAutoscaleProfile` to accept empty list. [#12903]
* Added new cmdlets to support creating diagnostic settings more flexible:
* `Get-AzDiagnosticSettingCategory`
diff --git a/src/Monitor/Monitor/Properties/AssemblyInfo.cs b/src/Monitor/Monitor/Properties/AssemblyInfo.cs
index 86536287d486..e8375eedeb2f 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("2.2.0")]
-[assembly: AssemblyFileVersion("2.2.0")]
+[assembly: AssemblyVersion("2.3.0")]
+[assembly: AssemblyFileVersion("2.3.0")]
diff --git a/src/MonitoringSolutions/Az.MonitoringSolutions.psd1 b/src/MonitoringSolutions/Az.MonitoringSolutions.psd1
index 4a4044f7b95b..a02e2e3fe9b5 100644
--- a/src/MonitoringSolutions/Az.MonitoringSolutions.psd1
+++ b/src/MonitoringSolutions/Az.MonitoringSolutions.psd1
@@ -10,7 +10,7 @@
PowerShellVersion = '5.1'
DotNetFrameworkVersion = '4.7.2'
RequiredAssemblies = './bin/Az.MonitoringSolutions.private.dll'
- RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.1'; })
+ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
FormatsToProcess = './Az.MonitoringSolutions.format.ps1xml'
FunctionsToExport = 'Get-AzMonitorLogAnalyticsSolution', 'New-AzMonitorLogAnalyticsSolution', 'Remove-AzMonitorLogAnalyticsSolution', 'Update-AzMonitorLogAnalyticsSolution'
AliasesToExport = '*'
diff --git a/src/MySql/Az.MySql.psd1 b/src/MySql/Az.MySql.psd1
index aaa9c3bd5323..290f238388ba 100644
--- a/src/MySql/Az.MySql.psd1
+++ b/src/MySql/Az.MySql.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 12/1/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
RootModule = './Az.MySql.psm1'
# Version number of this module.
-ModuleVersion = '0.1.0'
+ModuleVersion = '0.3.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.MySql.private.dll'
@@ -130,7 +130,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- # ReleaseNotes = ''
+ ReleaseNotes = '* Added MySql flexible server cmdlets'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/MySql/ChangeLog.md b/src/MySql/ChangeLog.md
index 8ecb2f725d3a..306283775987 100644
--- a/src/MySql/ChangeLog.md
+++ b/src/MySql/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 0.3.0
* Added MySql flexible server cmdlets
## Version 0.2.0
diff --git a/src/MySql/Properties/AssemblyInfo.cs b/src/MySql/Properties/AssemblyInfo.cs
index fde71160bc48..35c99a435820 100644
--- a/src/MySql/Properties/AssemblyInfo.cs
+++ b/src/MySql/Properties/AssemblyInfo.cs
@@ -24,5 +24,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("00815AB0-DED8-4FE1-A7F0-5A98B87EAA3D")]
-[assembly: AssemblyVersion("0.2.0")]
-[assembly: AssemblyFileVersion("0.2.0")]
+[assembly: AssemblyVersion("0.3.0")]
+[assembly: AssemblyFileVersion("0.3.0")]
diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1
index d46638250a45..7436f20b6f03 100644
--- a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1
+++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 11/13/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '0.2.0'
+ModuleVersion = '0.3.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.NetApp.dll'
@@ -147,46 +147,9 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Add new Backup Policy cmdlets:
- - ''Get-AzNetAppFilesBackupPolicy''
- - ''New-AzNetAppFilesBackupPolicy''
- - ''Remove-AzNetAppFilesBackupPolicy''
- - ''Update-AzNetAppFilesBackupPolicy''
-* Add new Snapshot Policy cmdlets:
- - ''Get-AzNetAppFilesBackupPolicy''
- - ''New-AzNetAppFilesBackupPolicy''
- - ''Remove-AzNetAppFilesBackupPolicy''
- - ''Update-AzNetAppFilesBackupPolicy''
-* Add new Backup cmdlets:
- - ''Get-AzNetAppFilesBackup''
- - ''New-AzNetAppFilesBackup''
- - ''Remove-AzNetAppFilesBackup''
- - ''Update-AzNetAppFilesBackup''
-* Add new Active Directory cmdlets:
- - ''Get-AzNetAppFilesActiveDirectory''
- - ''New-AzNetAppFilesActiveDirectory''
- - ''Remove-AzNetAppFilesActiveDirectory''
- - ''Update-AzNetAppFilesActiveDirectory''
-* Add new ''Get-AzNetAppFilesVault'' cmdlet (use for backups, vaults currently only support getting list of vaults):
-* Add new Set-AzNetAppFilesVolumePool cmdlet, to move volume to another pool
-* Add parameters to ''New-AzNetAppFilesVolume''
- - Backup to to enable Backups and Backup Policy
- - Snapshot to enable Snapshot Policy
- - totalThroughputMips
- - SnapshotDirectoryVisible
- - BackupId
- - SecurityStyle
- - KerberosEnabled
-* Add paramters to ''Update-AzNetAppFilesVolume''
- - Backup to to enable Backups and Backup Policy
- - totalThroughputMips
-* Add property StatusDetails to Account
-* Add properties to support LDAP over SSL/TLS to ActiveDirectory
-* Add properties to support Kerberos to ExportPolicy rule
-* Add QosType parameter to Pool ''New-AzNetAppFilesPool'' and ''Update-AzNetAppFilesPool''
-* Breaking Removed ServiecLevel from ''Update-AzNetAppFilesPool'' as that updating servie level is not supported
-* Add ''Initialize-AzNetAppFilesReplication'' cmdLet
-* Add ForceBreak parameter to ''Suspend-AzNetAppFilesReplication'' to force break the replication if replication is in status transferring'
+ ReleaseNotes = '* Added aesEncryption, ldapSigning properties to ActiveDirectory
+* Fixed Tags in UpdateAzNetAppFilesBackupPolicy
+* Return backupId in Backup and BackupPatch models'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/NetAppFiles/NetAppFiles/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md
index c2e2513d7bdb..01c8e36ca2e1 100644
--- a/src/NetAppFiles/NetAppFiles/ChangeLog.md
+++ b/src/NetAppFiles/NetAppFiles/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 0.3.0
* Added aesEncryption, ldapSigning properties to ActiveDirectory
* Fixed Tags in UpdateAzNetAppFilesBackupPolicy
* Return backupId in Backup and BackupPatch models
diff --git a/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs b/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs
index 0197668b30b8..ddd0ddd94b93 100644
--- a/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs
+++ b/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs
@@ -24,5 +24,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("42656543-77AD-4968-BA4B-BE0778705625")]
-[assembly: AssemblyVersion("0.2.0")]
-[assembly: AssemblyFileVersion("0.2.0")]
+[assembly: AssemblyVersion("0.3.0")]
+[assembly: AssemblyFileVersion("0.3.0")]
diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1
index 66ca8797037b..55cfc3bdf9ef 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 b1f2a3f59705..28c8422d5e09 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 a4afba38100e..e88da610ab53 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 b4e2c1dc7e5c..db0c8c73a920 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 87aa02eece7d..9eb2a911d412 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.PolicyInsights.dll'
diff --git a/src/Portal/Az.Portal.psd1 b/src/Portal/Az.Portal.psd1
index ba7a3088ba98..c0dde6c22cea 100644
--- a/src/Portal/Az.Portal.psd1
+++ b/src/Portal/Az.Portal.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.Portal.private.dll'
diff --git a/src/PostgreSql/Az.PostgreSql.psd1 b/src/PostgreSql/Az.PostgreSql.psd1
index 6bdd75b21191..0eba676bc7a6 100644
--- a/src/PostgreSql/Az.PostgreSql.psd1
+++ b/src/PostgreSql/Az.PostgreSql.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.PostgreSql.private.dll'
diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1
index 193877eadb6b..aa74890fc088 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 a2e83b97208b..4a8a3323d72a 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.PrivateDns.dll'
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs
index 14150850265d..c24505d0aeb2 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup.Helpers/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.0.0")]
-[assembly: AssemblyVersion("3.0.1")]
-[assembly: AssemblyFileVersion("3.0.1")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs
index 14150850265d..c24505d0aeb2 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup.Logger/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.0.0")]
-[assembly: AssemblyVersion("3.0.1")]
-[assembly: AssemblyFileVersion("3.0.1")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs
index 14150850265d..c24505d0aeb2 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup.Models/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.0.0")]
-[assembly: AssemblyVersion("3.0.1")]
-[assembly: AssemblyFileVersion("3.0.1")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs
index 14150850265d..c24505d0aeb2 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/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.0.0")]
-[assembly: AssemblyVersion("3.0.1")]
-[assembly: AssemblyFileVersion("3.0.1")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
diff --git a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs
index 14150850265d..c24505d0aeb2 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/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.0.0")]
-[assembly: AssemblyVersion("3.0.1")]
-[assembly: AssemblyFileVersion("3.0.1")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
diff --git a/src/RecoveryServices/RecoveryServices.Backup/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup/Properties/AssemblyInfo.cs
index 1d8cdef0b06f..41af4d628485 100644
--- a/src/RecoveryServices/RecoveryServices.Backup/Properties/AssemblyInfo.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup/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.0.0")]
-[assembly: AssemblyVersion("3.0.1")]
-[assembly: AssemblyFileVersion("3.0.1")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs
index 2bfd677e1fa5..2ba4279f7e7e 100644
--- a/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs
+++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs
@@ -42,5 +42,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("3.0.1")]
-[assembly: AssemblyFileVersion("3.0.1")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1
index 5aaaee9a1715..1925d4866c66 100644
--- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1
+++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 11/13/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '3.0.1'
+ModuleVersion = '3.1.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll',
@@ -267,9 +267,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Specifying policy BackupTime is in UTC.
-* Modifying breaking change warning in Get-AzRecoveryServicesBackupJobDetails cmdlet.
-* Updating sample script help text for Set-AzRecoveryServicesBackupProtectionPolicy cmdlet.'
+ ReleaseNotes = '* Made help text and parameter set name changes to ''Restore-AzRecoveryServicesBackupItem'' cmdlet.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md
index 1732efa13674..e1ec8e54c682 100644
--- a/src/RecoveryServices/RecoveryServices/ChangeLog.md
+++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 3.1.0
* Made help text and parameter set name changes to `Restore-AzRecoveryServicesBackupItem` cmdlet.
## Version 3.0.1
diff --git a/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs
index e8a8ecf7ad99..a2072c4dcb89 100644
--- a/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs
+++ b/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs
@@ -42,5 +42,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("3.0.1")]
-[assembly: AssemblyFileVersion("3.0.1")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
diff --git a/src/RedisCache/RedisCache/Az.RedisCache.psd1 b/src/RedisCache/RedisCache/Az.RedisCache.psd1
index c0873e04b80f..cbcd8cb3a7bd 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 ab50331629cf..3cc5dfb2fe0c 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 14b52f01412c..e51bc2096c22 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 a04217a7002f..fd87407d923b 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.ResourceGraph.dll'
diff --git a/src/ResourceMover/Az.ResourceMover.psd1 b/src/ResourceMover/Az.ResourceMover.psd1
index 0f0ac22158fe..0eeeb7a436aa 100644
--- a/src/ResourceMover/Az.ResourceMover.psd1
+++ b/src/ResourceMover/Az.ResourceMover.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.ResourceMover.private.dll'
diff --git a/src/Resources/ResourceManager/Properties/AssemblyInfo.cs b/src/Resources/ResourceManager/Properties/AssemblyInfo.cs
index f2e995571d0a..4e1affdbf12a 100644
--- a/src/Resources/ResourceManager/Properties/AssemblyInfo.cs
+++ b/src/Resources/ResourceManager/Properties/AssemblyInfo.cs
@@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("e8f34267-c461-4eae-b156-5f3528553d10")]
-[assembly: AssemblyVersion("3.0.1")]
-[assembly: AssemblyFileVersion("3.0.1")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")]
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.Test")]
diff --git a/src/Resources/Resources/Az.Resources.psd1 b/src/Resources/Resources/Az.Resources.psd1
index 9e27d74fd31b..7cbd05eefcbc 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: 11/13/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '3.0.1'
+ModuleVersion = '3.1.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Authorization.dll',
@@ -195,9 +195,8 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Fixed an issue where What-If shows two resource group scopes with different casing
-* Updated ''Export-AzResourceGroup'' to use the SDK.
-* Added culture info to parse methods'
+ ReleaseNotes = '* Added ''-Tag'' parameter support to ''Set-AzTemplateSpec'' and ''New-AzTemplateSpec''
+* Added Tag display support to default formatter for Template Specs '
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md
index a9c089637929..eec3dd47029c 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 3.1.0
* Added `-Tag` parameter support to `Set-AzTemplateSpec` and `New-AzTemplateSpec`
* Added Tag display support to default formatter for Template Specs
diff --git a/src/Resources/Resources/Properties/AssemblyInfo.cs b/src/Resources/Resources/Properties/AssemblyInfo.cs
index 2a65e115ba40..22ca7d705548 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("3.0.1")]
-[assembly: AssemblyFileVersion("3.0.1")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")]
#endif
diff --git a/src/Resources/Tags/Properties/AssemblyInfo.cs b/src/Resources/Tags/Properties/AssemblyInfo.cs
index f0fa96ff86ae..6970f44eb04a 100644
--- a/src/Resources/Tags/Properties/AssemblyInfo.cs
+++ b/src/Resources/Tags/Properties/AssemblyInfo.cs
@@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("e386b843-f3f0-4db3-8664-37d16b860dde")]
-[assembly: AssemblyVersion("3.0.1")]
-[assembly: AssemblyFileVersion("3.0.1")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.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 0ca93effe9bf..5d17312c41cd 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 6df8745c34a0..26453aba8490 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 d7af2553261f..71c467e86351 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 0586e978ad99..ce68a04a44a4 100644
--- a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1
+++ b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 9/15/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.2.0'
+ModuleVersion = '2.2.1'
# 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll',
@@ -146,22 +146,9 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added new cmdlets for managed clusters and node types:
- - ''New-AzServiceFabricManagedCluster''
- - ''Get-AzServiceFabricManagedCluster''
- - ''Set-AzServiceFabricManagedCluster''
- - ''Remove-AzServiceFabricManagedCluster''
- - ''Add-AzServiceFabricManagedClusterClientCertificate''
- - ''Remove-AzServiceFabricManagedClusterClientCertificate''
- - ''New-AzServiceFabricManagedNodeType''
- - ''Get-AzServiceFabricManagedNodeType''
- - ''Set-AzServiceFabricManagedNodeType''
- - ''Remove-AzServiceFabricManagedNodeType''
- - ''Add-AzServiceFabricManagedNodeTypeVMExtension''
- - ''Add-AzServiceFabricManagedNodeTypeVMSecret''
- - ''Remove-AzServiceFabricManagedNodeTypeVMExtension''
- - ''Restart-AzServiceFabricManagedNodeTyp''
-* Upgraded Service Fabric SDK to version 1.2.0 which uses service fabric resource provider api-version 2020-03-01 for the current model and 2020-01-01-preview for managed clusters.'
+ ReleaseNotes = '* Added example to ''Set-AzServiceFabricSetting'' with SettingsSectionDescription param
+* Updated application related cmdlets to call out that support is only for ARM deployed resources
+* Marked for deprecation cluster cert cmdlets ''Add-AzureRmServiceFabricClusterCertificate'' and ''Remove-AzureRmServiceFabricClusterCertificate'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/ServiceFabric/ServiceFabric/ChangeLog.md b/src/ServiceFabric/ServiceFabric/ChangeLog.md
index bf490b36eb60..c4e9901eb7fe 100644
--- a/src/ServiceFabric/ServiceFabric/ChangeLog.md
+++ b/src/ServiceFabric/ServiceFabric/ChangeLog.md
@@ -19,6 +19,8 @@
-->
## Upcoming Release
+## Version 2.2.1
+
* Added example to `Set-AzServiceFabricSetting` with SettingsSectionDescription param
* Updated application related cmdlets to call out that support is only for ARM deployed resources
* Marked for deprecation cluster cert cmdlets `Add-AzureRmServiceFabricClusterCertificate` and `Remove-AzureRmServiceFabricClusterCertificate`
diff --git a/src/ServiceFabric/ServiceFabric/Properties/AssemblyInfo.cs b/src/ServiceFabric/ServiceFabric/Properties/AssemblyInfo.cs
index 4a87ee665660..484731d21898 100644
--- a/src/ServiceFabric/ServiceFabric/Properties/AssemblyInfo.cs
+++ b/src/ServiceFabric/ServiceFabric/Properties/AssemblyInfo.cs
@@ -18,8 +18,8 @@
using System.Runtime.InteropServices;
[assembly: Guid("B965F0A8-D610-4275-B5EA-8F2D806F337C")]
-[assembly: AssemblyVersion("2.2.0")]
-[assembly: AssemblyFileVersion("2.2.0")]
+[assembly: AssemblyVersion("2.2.1")]
+[assembly: AssemblyFileVersion("2.2.1")]
[assembly: AssemblyTitle("Microsoft Azure Powershell - Service Fabric")]
[assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)]
diff --git a/src/SignalR/SignalR/Az.SignalR.psd1 b/src/SignalR/SignalR/Az.SignalR.psd1
index 339c03769194..a1f37079cc53 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.SignalR.dll'
diff --git a/src/SpringCloud/Az.SpringCloud.psd1 b/src/SpringCloud/Az.SpringCloud.psd1
index 6406cac7e69a..6111cd66ab31 100644
--- a/src/SpringCloud/Az.SpringCloud.psd1
+++ b/src/SpringCloud/Az.SpringCloud.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.SpringCloud.private.dll'
diff --git a/src/Sql/Sql.LegacySdk/Properties/AssemblyInfo.cs b/src/Sql/Sql.LegacySdk/Properties/AssemblyInfo.cs
index e8b36188cb6b..bc208c96d5f2 100644
--- a/src/Sql/Sql.LegacySdk/Properties/AssemblyInfo.cs
+++ b/src/Sql/Sql.LegacySdk/Properties/AssemblyInfo.cs
@@ -20,8 +20,8 @@
[assembly: AssemblyTitle("Microsoft Azure SQL Server Management Library")]
[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure SQL.")]
-[assembly: AssemblyVersion("2.12.0")]
-[assembly: AssemblyFileVersion("2.12.0")]
+[assembly: AssemblyVersion("2.13.0")]
+[assembly: AssemblyFileVersion("2.13.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Azure .NET SDK")]
diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1
index 8b742f7cc317..947bcc151747 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: 11/13/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.12.0'
+ModuleVersion = '2.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll',
@@ -324,9 +324,16 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Fixed issues where Set-AzSqlDatabaseAudit were not support Hyperscale database and database edition cannot be determined
-* Added MaintenanceConfigurationId to ''New-AzSqlInstance'' and ''Set-AzSqlInstance''
-* Fixed a bug in GetAzureSqlDatabaseReplicationLink.cs where PartnerServerName parameter was being checked for by value instead of key'
+ ReleaseNotes = '* Added SecondaryType to the following:
+ - ''New-AzSqlDatabase''
+ - ''Set-AzSqlDatabase''
+ - ''New-AzSqlDatabaseSecondary''
+* Added HighAvailabilityReplicaCount to the following:
+ - ''New-AzSqlDatabase''
+ - ''Set-AzSqlDatabase''
+* Made ReadReplicaCount an alias of HighAvailabilityReplicaCount in the following:
+ - ''New-AzSqlDatabase''
+ - ''Set-AzSqlDatabase'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md
index bd7df5c07551..b8f161c154c0 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.13.0
* Added SecondaryType to the following:
- `New-AzSqlDatabase`
- `Set-AzSqlDatabase`
diff --git a/src/Sql/Sql/Properties/AssemblyInfo.cs b/src/Sql/Sql/Properties/AssemblyInfo.cs
index 1a253b802e4d..6f59f93cadde 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.12.0")]
-[assembly: AssemblyFileVersion("2.12.0")]
+[assembly: AssemblyVersion("2.13.0")]
+[assembly: AssemblyFileVersion("2.13.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")]
#endif
diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 b/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1
index 32c8017d96bc..3f60587ed964 100644
--- a/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1
+++ b/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.SqlVirtualMachine.dll'
diff --git a/src/StackEdge/StackEdge/Az.StackEdge.psd1 b/src/StackEdge/StackEdge/Az.StackEdge.psd1
index 8bfcb69cfa70..7dddd4b627de 100644
--- a/src/StackEdge/StackEdge/Az.StackEdge.psd1
+++ b/src/StackEdge/StackEdge/Az.StackEdge.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataBoxEdge.dll'
diff --git a/src/StackHCI/Az.StackHCI.psd1 b/src/StackHCI/Az.StackHCI.psd1
index 7f2a076a10c9..72f496d005af 100644
--- a/src/StackHCI/Az.StackHCI.psd1
+++ b/src/StackHCI/Az.StackHCI.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1
index 87755a0ec94d..9ca2e2534940 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: 10/23/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '3.0.0'
+ModuleVersion = '3.1.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Storage.dll',
@@ -217,31 +217,11 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Removed obsolete property RestorePolicy.LastEnabledTime
- - ''Enable-AzStorageBlobRestorePolicy''
- - ''Disable-AzStorageBlobRestorePolicy''
- - ''Get-AzStorageBlobServiceProperty''
- - ''Update-AzStorageBlobServiceProperty''
-* Change Type of DaysAfterModificationGreaterThan from int to int?
- - ''Set-AzStorageAccountManagementPolicy''
- - ''Get-AzStorageAccountManagementPolicy''
- - ''Add-AzStorageAccountManagementPolicyAction''
- - ''New-AzStorageAccountManagementPolicyRule''
-* Supported create/update file share with access tier
- - ''New-AzRmStorageShare''
- - ''Update-AzRmStorageShare''
-* Supported set/update/remove Acl recursively on Datalake Gen2 item
- - ''Set-AzDataLakeGen2AclRecursive''
- - ''Update-AzDataLakeGen2AclRecursive''
- - ''Remove-AzDataLakeGen2AclRecursive''
-* Supported Container access policy with new permission x,t
- - ''New-AzStorageContainerStoredAccessPolicy''
- - ''Set-AzStorageContainerStoredAccessPolicy''
-* Changed the output of get/set Container access policy cmdlet, by change the child property Permission type from enum to String
- - ''Get-AzStorageContainerStoredAccessPolicy''
- - ''Set-AzStorageContainerStoredAccessPolicy''
-* Fixed a sample script issue of set management policy with json
- - ''Set-AzStorageAccountManagementPolicy'''
+ ReleaseNotes = '* Supported upload Azure File size up to 4 TiB
+ - ''Set-AzStorageFileContent''
+* Upgraded Azure.Storage.Blobs to 12.7.0
+* Upgraded Azure.Storage.Files.Shares to 12.5.0
+* Upgraded Azure.Storage.Files.DataLake to 12.5.0'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md
index c5696799ccb6..d65d300b5c22 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 3.1.0
* Supported upload Azure File size up to 4 TiB
- `Set-AzStorageFileContent`
* Upgraded Azure.Storage.Blobs to 12.7.0
diff --git a/src/Storage/Storage.Management/Properties/AssemblyInfo.cs b/src/Storage/Storage.Management/Properties/AssemblyInfo.cs
index b0d2924e5024..52bebcb8503d 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("3.0.0")]
-[assembly: AssemblyFileVersion("3.0.0")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
diff --git a/src/Storage/Storage/Properties/AssemblyInfo.cs b/src/Storage/Storage/Properties/AssemblyInfo.cs
index 3030327a64c6..4f0224f15f03 100644
--- a/src/Storage/Storage/Properties/AssemblyInfo.cs
+++ b/src/Storage/Storage/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("1.0.0")]
-[assembly: AssemblyVersion("3.0.0")]
-[assembly: AssemblyFileVersion("3.0.0")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
[assembly: CLSCompliant(false)]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Storage.Test")]
diff --git a/src/StorageSync/StorageSync/Az.StorageSync.psd1 b/src/StorageSync/StorageSync/Az.StorageSync.psd1
index e3b5a0872dc2..8bf647b68fa4 100644
--- a/src/StorageSync/StorageSync/Az.StorageSync.psd1
+++ b/src/StorageSync/StorageSync/Az.StorageSync.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 7/9/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.3.0'
+ModuleVersion = '1.4.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.StorageSync.dll',
@@ -121,10 +121,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added a new version StorageSync SDK targeting ApiVersion 2020-03-01
-* Added Update Storage Sync Service cmdlet
- - ''Set-AzStorageSyncService''
-* Added IncomingTrafficPolicy and PrivateEndpointConnections to StorageSyncService cmdlets.'
+ ReleaseNotes = '* Added Sync tiering policy feature with download policy and local cache mode'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/StorageSync/StorageSync/ChangeLog.md b/src/StorageSync/StorageSync/ChangeLog.md
index 40958aa1085d..448871a46a14 100644
--- a/src/StorageSync/StorageSync/ChangeLog.md
+++ b/src/StorageSync/StorageSync/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.4.0
* Added Sync tiering policy feature with download policy and local cache mode
## Version 1.3.0
diff --git a/src/StorageSync/StorageSync/Properties/AssemblyInfo.cs b/src/StorageSync/StorageSync/Properties/AssemblyInfo.cs
index 22dc5011e24d..5901b4982a0a 100644
--- a/src/StorageSync/StorageSync/Properties/AssemblyInfo.cs
+++ b/src/StorageSync/StorageSync/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("0.7.1")]
-[assembly: AssemblyVersion("1.3.0")]
-[assembly: AssemblyFileVersion("1.3.0")]
+[assembly: AssemblyVersion("1.4.0")]
+[assembly: AssemblyFileVersion("1.4.0")]
diff --git a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1
index 1266300e6152..8fb9df83f645 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# 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 825850f01e0d..b5e5ab24b4e4 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Subscription.dll'
diff --git a/src/Support/Support/Az.Support.psd1 b/src/Support/Support/Az.Support.psd1
index 60ae32344bf3..1d61846c3f24 100644
--- a/src/Support/Support/Az.Support.psd1
+++ b/src/Support/Support/Az.Support.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Support.dll'
diff --git a/src/Synapse/Synapse/Az.Synapse.psd1 b/src/Synapse/Synapse/Az.Synapse.psd1
index 7910e543bdaa..e7f2131d4804 100644
--- a/src/Synapse/Synapse/Az.Synapse.psd1
+++ b/src/Synapse/Synapse/Az.Synapse.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 11/13/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '0.4.0'
+ModuleVersion = '0.5.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Synapse.dll',
@@ -94,25 +94,27 @@ CmdletsToExport = 'Get-AzSynapseSparkJob', 'Stop-AzSynapseSparkJob',
'Get-AzSynapseSqlActiveDirectoryAdministrator',
'Set-AzSynapseSqlActiveDirectoryAdministrator',
'Remove-AzSynapseSqlActiveDirectoryAdministrator',
- 'Get-AzSynapseSqlPoolAuditSetting', 'Set-AzSynapseSqlPoolAuditSetting',
- 'Reset-AzSynapseSqlPoolAuditSetting', 'Get-AzSynapseSqlAuditSetting',
- 'Set-AzSynapseSqlAuditSetting', 'Reset-AzSynapseSqlAuditSetting',
+ 'Get-AzSynapseSqlPoolAuditSetting',
+ 'Set-AzSynapseSqlPoolAuditSetting',
+ 'Reset-AzSynapseSqlPoolAuditSetting',
+ 'Get-AzSynapseSqlAuditSetting', 'Set-AzSynapseSqlAuditSetting',
+ 'Reset-AzSynapseSqlAuditSetting',
'Get-AzSynapseSqlAdvancedThreatProtectionSetting',
'Update-AzSynapseSqlAdvancedThreatProtectionSetting',
'Reset-AzSynapseSqlAdvancedThreatProtectionSetting',
'Get-AzSynapseSqlVulnerabilityAssessmentSetting',
'Update-AzSynapseSqlVulnerabilityAssessmentSetting',
'Reset-AzSynapseSqlVulnerabilityAssessmentSetting',
- 'Remove-AzSynapseSqlPoolRestorePoint',
- 'Update-AzSynapseSqlPool', 'Test-AzSynapseWorkspace',
- 'Test-AzSynapseSparkPool', 'Test-AzSynapseSqlPool',
- 'New-AzSynapseFirewallRule', 'Remove-AzSynapseFirewallRule',
- 'Get-AzSynapseFirewallRule', 'Update-AzSynapseFirewallRule',
- 'Get-AzSynapseRoleAssignment', 'New-AzSynapseRoleAssignment',
- 'Remove-AzSynapseRoleAssignment', 'Get-AzSynapseRoleDefinition',
- 'Get-AzSynapseSqlDatabase', 'New-AzSynapseSqlDatabase',
- 'Remove-AzSynapseSqlDatabase', 'Update-AzSynapseSqlDatabase',
- 'Test-AzSynapseSqlDatabase', 'Get-AzSynapseIntegrationRuntime',
+ 'Remove-AzSynapseSqlPoolRestorePoint', 'Update-AzSynapseSqlPool',
+ 'Test-AzSynapseWorkspace', 'Test-AzSynapseSparkPool',
+ 'Test-AzSynapseSqlPool', 'New-AzSynapseFirewallRule',
+ 'Remove-AzSynapseFirewallRule', 'Get-AzSynapseFirewallRule',
+ 'Update-AzSynapseFirewallRule', 'Get-AzSynapseRoleAssignment',
+ 'New-AzSynapseRoleAssignment', 'Remove-AzSynapseRoleAssignment',
+ 'Get-AzSynapseRoleDefinition', 'Get-AzSynapseSqlDatabase',
+ 'New-AzSynapseSqlDatabase', 'Remove-AzSynapseSqlDatabase',
+ 'Update-AzSynapseSqlDatabase', 'Test-AzSynapseSqlDatabase',
+ 'Get-AzSynapseIntegrationRuntime',
'Get-AzSynapseIntegrationRuntimeKey',
'Get-AzSynapseIntegrationRuntimeMetric',
'Get-AzSynapseIntegrationRuntimeNode',
@@ -147,10 +149,10 @@ CmdletsToExport = 'Get-AzSynapseSparkJob', 'Stop-AzSynapseSparkJob',
AliasesToExport = 'New-AzSynapsePipeline', 'New-AzSynapseLinkedService',
'New-AzSynapseNotebook', 'Import-AzSynapseNotebook',
'New-AzSynapseTrigger', 'New-AzSynapseDataset',
- 'New-AzSynapseDataFlow',
- 'Get-AzSynapseSqlPoolAudit', 'Set-AzSynapseSqlPoolAudit',
- 'Remove-AzSynapseSqlPoolAudit', 'Get-AzSynapseSqlAudit',
- 'Set-AzSynapseSqlAudit', 'Remove-AzSynapseSqlAudit',
+ 'New-AzSynapseDataFlow', 'Get-AzSynapseSqlPoolAudit',
+ 'Set-AzSynapseSqlPoolAudit', 'Remove-AzSynapseSqlPoolAudit',
+ 'Get-AzSynapseSqlAudit', 'Set-AzSynapseSqlAudit',
+ 'Remove-AzSynapseSqlAudit',
'Clear-AzSynapseSqlAdvancedThreatProtectionSetting',
'Clear-AzSynapseSqlVulnerabilityAssessmentSetting'
@@ -181,7 +183,29 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Add ''-Force'' to all Remove cmdlets'
+ ReleaseNotes = '* Added support for operation of Synapse SQL Pool Restore Point
+ - Add ''New-AzSynapseSqlPoolRestorePoint'' cmdlet
+ - Add ''Remove-AzSynapseSqlPoolRestorePoint'' cmdlet
+* Added support for operation of Auditing settings in Workspace-level and SqlPool-level
+ - Add ''Set-AzSynapseSqlAuditSetting'' cmdlet
+ - Add ''Get-AzSynapseSqlAuditSetting'' cmdlet
+ - Add ''Reset-AzSynapseSqlAuditSetting'' cmdlet
+ - Add ''Set-AzSynapseSqlPoolAuditSetting'' cmdlet
+ - Add ''Get-AzSynapseSqlPoolAuditSetting'' cmdlet
+ - Add ''Reset-AzSynapseSqlPoolAuditSetting'' cmdlet
+* Added support for operation of Advanced Threat Protection settings in Workspace-level
+ - Add ''Update-AzSynapseSqlAdvancedThreatProtectionSetting'' cmdlet
+ - Add ''Get-AzSynapseSqlAdvancedThreatProtectionSetting'' cmdlet
+ - Add ''Reset-AzSynapseSqlAdvancedThreatProtectionSetting'' cmdlet
+* Added support for operation of Vulnerability Assessment settings in Workspace-level
+ - Add ''Update-AzSynapseSqlVulnerabilityAssessmentSetting'' cmdlet
+ - Add ''Get-AzSynapseSqlVulnerabilityAssessmentSetting'' cmdlet
+ - Add ''Reset-AzSynapseSqlVulnerabilityAssessmentSetting'' cmdlet
+* Added support for operation of SQL Active Directory admin
+ - Add ''Set-AzSynapseSqlActiveDirectoryAdministrator'' cmdlet
+ - Add ''Get-AzSynapseSqlActiveDirectoryAdministrator'' cmdlet
+ - Add ''Remove-AzSynapseSqlActiveDirectoryAdministrator'' cmdlet
+* Fixed Null Reference Exception when submit spark job.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Synapse/Synapse/ChangeLog.md b/src/Synapse/Synapse/ChangeLog.md
index bde52df23d65..a7b94d3ae0f1 100644
--- a/src/Synapse/Synapse/ChangeLog.md
+++ b/src/Synapse/Synapse/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 0.5.0
* Added support for operation of Synapse SQL Pool Restore Point
- Add `New-AzSynapseSqlPoolRestorePoint` cmdlet
- Add `Remove-AzSynapseSqlPoolRestorePoint` cmdlet
diff --git a/src/Synapse/Synapse/Properties/AssemblyInfo.cs b/src/Synapse/Synapse/Properties/AssemblyInfo.cs
index 97968fcc2315..2cdb786014e5 100644
--- a/src/Synapse/Synapse/Properties/AssemblyInfo.cs
+++ b/src/Synapse/Synapse/Properties/AssemblyInfo.cs
@@ -35,5 +35,5 @@
// by using the '*' as shown below:
-[assembly: AssemblyVersion("0.4.0")]
-[assembly: AssemblyFileVersion("0.4.0")]
+[assembly: AssemblyVersion("0.5.0")]
+[assembly: AssemblyFileVersion("0.5.0")]
diff --git a/src/TimeSeriesInsights/Az.TimeSeriesInsights.psd1 b/src/TimeSeriesInsights/Az.TimeSeriesInsights.psd1
index c5842594ecc7..fdb870b5cf1c 100644
--- a/src/TimeSeriesInsights/Az.TimeSeriesInsights.psd1
+++ b/src/TimeSeriesInsights/Az.TimeSeriesInsights.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.TimeSeriesInsights.private.dll'
diff --git a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1
index 963d0f8a7232..c20060736c0c 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.TrafficManager.dll'
diff --git a/src/VMWare/Az.VMWare.psd1 b/src/VMWare/Az.VMWare.psd1
index ff953c6f3a37..957cfecdb4af 100644
--- a/src/VMWare/Az.VMWare.psd1
+++ b/src/VMWare/Az.VMWare.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.VMWare.private.dll'
diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1
index 9ac9311d0223..d59cc332fdec 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: 11/13/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.1.0'
+ModuleVersion = '2.1.1'
# 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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Websites.dll'
@@ -135,7 +135,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added support for new access restriction features: ServiceTag, multi-ip and http-headers'
+ ReleaseNotes = '* Prevent duplicate access restriction rules'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md
index 265ca570b8b6..b37023f118c3 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 2.1.1
* Prevent duplicate access restriction rules
## Version 2.1.0
diff --git a/src/Websites/Websites/Properties/AssemblyInfo.cs b/src/Websites/Websites/Properties/AssemblyInfo.cs
index 8529f8d0e9e8..a0d4f708dc3f 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("2.1.0")]
-[assembly: AssemblyFileVersion("2.1.0")]
+[assembly: AssemblyVersion("2.1.1")]
+[assembly: AssemblyFileVersion("2.1.1")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Websites.Test")]
#endif
diff --git a/src/WindowsIotServices/Az.WindowsIotServices.psd1 b/src/WindowsIotServices/Az.WindowsIotServices.psd1
index 262d6a2112c9..25aa1dda1740 100644
--- a/src/WindowsIotServices/Az.WindowsIotServices.psd1
+++ b/src/WindowsIotServices/Az.WindowsIotServices.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 = '2.2.1'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.WindowsIotServices.private.dll'
diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1
index 0dc0d968f967..44517d8bd283 100644
--- a/tools/Az/Az.psd1
+++ b/tools/Az/Az.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 11/13/2020
+# Generated on: 12/3/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '5.1.0'
+ModuleVersion = '5.2.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -52,11 +52,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 = '2.2.1'; },
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.2'; },
@{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.Aks'; RequiredVersion = '2.0.1'; },
@{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.4'; },
- @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '2.1.0'; },
+ @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '2.2.0'; },
@{ModuleName = 'Az.AppConfiguration'; RequiredVersion = '1.0.0'; },
@{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.Automation'; RequiredVersion = '1.4.0'; },
@@ -64,12 +64,12 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.1'; },
@{ModuleName = 'Az.Billing'; RequiredVersion = '2.0.0'; },
@{ModuleName = 'Az.Cdn'; RequiredVersion = '1.6.0'; },
@{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.8.0'; },
- @{ModuleName = 'Az.Compute'; RequiredVersion = '4.6.0'; },
+ @{ModuleName = 'Az.Compute'; RequiredVersion = '4.7.0'; },
@{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '1.0.3'; },
- @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '2.0.0'; },
+ @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '2.1.0'; },
@{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.Databricks'; RequiredVersion = '1.0.1'; },
- @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.11.1'; },
+ @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.11.2'; },
@{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.0.2'; },
@{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.3.0'; },
@{ModuleName = 'Az.DataShare'; RequiredVersion = '1.0.0'; },
@@ -82,9 +82,9 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.1'; },
@{ModuleName = 'Az.FrontDoor'; RequiredVersion = '1.6.1'; },
@{ModuleName = 'Az.Functions'; RequiredVersion = '2.0.0'; },
@{ModuleName = 'Az.HDInsight'; RequiredVersion = '4.1.0'; },
- @{ModuleName = 'Az.HealthcareApis'; RequiredVersion = '1.1.0'; },
- @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.7.0'; },
- @{ModuleName = 'Az.KeyVault'; RequiredVersion = '3.1.0'; },
+ @{ModuleName = 'Az.HealthcareApis'; RequiredVersion = '1.2.0'; },
+ @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.7.1'; },
+ @{ModuleName = 'Az.KeyVault'; RequiredVersion = '3.2.0'; },
@{ModuleName = 'Az.Kusto'; RequiredVersion = '1.0.0'; },
@{ModuleName = 'Az.LogicApp'; RequiredVersion = '1.4.0'; },
@{ModuleName = 'Az.MachineLearning'; RequiredVersion = '1.1.3'; },
@@ -92,28 +92,28 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.1'; },
@{ModuleName = 'Az.ManagedServices'; RequiredVersion = '2.0.0'; },
@{ModuleName = 'Az.MarketplaceOrdering'; RequiredVersion = '1.0.2'; },
@{ModuleName = 'Az.Media'; RequiredVersion = '1.1.1'; },
- @{ModuleName = 'Az.Monitor'; RequiredVersion = '2.2.0'; },
+ @{ModuleName = 'Az.Monitor'; RequiredVersion = '2.3.0'; },
@{ModuleName = 'Az.Network'; RequiredVersion = '4.3.0'; },
@{ModuleName = 'Az.NotificationHubs'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.OperationalInsights'; RequiredVersion = '2.3.0'; },
@{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.3.1'; },
@{ModuleName = 'Az.PowerBIEmbedded'; RequiredVersion = '1.1.2'; },
@{ModuleName = 'Az.PrivateDns'; RequiredVersion = '1.0.3'; },
- @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '3.0.1'; },
+ @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '3.1.0'; },
@{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.4.0'; },
@{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.3'; },
- @{ModuleName = 'Az.Resources'; RequiredVersion = '3.0.1'; },
+ @{ModuleName = 'Az.Resources'; RequiredVersion = '3.1.0'; },
@{ModuleName = 'Az.ServiceBus'; RequiredVersion = '1.4.1'; },
- @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '2.2.0'; },
+ @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '2.2.1'; },
@{ModuleName = 'Az.SignalR'; RequiredVersion = '1.2.0'; },
- @{ModuleName = 'Az.Sql'; RequiredVersion = '2.12.0'; },
+ @{ModuleName = 'Az.Sql'; RequiredVersion = '2.13.0'; },
@{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; },
- @{ModuleName = 'Az.Storage'; RequiredVersion = '3.0.0'; },
- @{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.3.0'; },
+ @{ModuleName = 'Az.Storage'; RequiredVersion = '3.1.0'; },
+ @{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.4.0'; },
@{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '1.0.1'; },
@{ModuleName = 'Az.Support'; RequiredVersion = '1.0.0'; },
@{ModuleName = 'Az.TrafficManager'; RequiredVersion = '1.0.4'; },
- @{ModuleName = 'Az.Websites'; RequiredVersion = '2.1.0'; })
+ @{ModuleName = 'Az.Websites'; RequiredVersion = '2.1.1'; })
# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
@@ -169,112 +169,80 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '5.1.0 - November 2020
+ ReleaseNotes = '5.2.0 - December 2020
Az.Accounts
-* Fixed an issue that TenantId may be not respected if using ''Connect-AzAccount -DeviceCode''[#13477]
-* Added new cmdlet ''Get-AzAccessToken''
-* Fixed an issue that error happens if user profile path is inaccessible
-* Fixed an issue causing Write-Object error during Connect-AzAccount [#13419]
-* Added parameter ''ContainerRegistryEndpointSuffix'' to: ''Add-AzEnvironment'', ''Set-AzEnvironment''
-* Supported interrupting login by hitting CTRL+C
-* Fixed an issue causing ''Connect-AzAccount -KeyVaultAccessToken'' not working [#13127]
-* Fixed null reference and method case insensitive in ''Invoke-AzRestMethod''
+* Managed to parse ExpiresOn time from raw token if could not get from underlying library
+* Improved warning message if Interactive authentication is unavailable
-Az.Aks
-* Fixed the issue that user cannot use service principal to create a new Kubernetes cluster. [#13012]
+Az.ApiManagement
+* [Breaking change] ''New-AzApiManagementProduct'' by default has no subscription limit.
-Az.AppConfiguration
-* General availability of ''Az.AppConfiguration'' module
+Az.Compute
+* Edited Get-AzVm to filter by ''-Name'' prior to checking for throttling due to too many resources.
+* New cmdlet ''Start-AzVmssRollingExtensionUpgrade''.
-Az.DataFactory
-* Improved error message of ''New-AzDataFactoryV2LinkedServiceEncryptedCredential'' command
-
-Az.DataLakeStore
-* Updated ADLS dataplane SDK to 1.2.4-alpha. Changes:https://github.com/Azure/azure-data-lake-store-net/blob/preview-alpha/CHANGELOG.md#version-124-alpha
-
-Az.DesktopVirtualization
-* Added new MSIX Package cmdlets and updated Applications cmdlets.
+Az.ContainerRegistry
+* Supported parameter ''Name'' for and value from pipeline input for ''Get-AzContainerRegistryUsage'' [#13605]
+* Polished exceptions for ''Connect-AzContainerRegistry''
-Az.EventHub
-* Fixed Cluster commands for EventHub cluster without tags
-* Updated help text for PartnerNamespace of AzEventHubGeoDRConfiguration commands
+Az.DataFactory
+* Updated ADF .Net SDK version to 4.13.0
-Az.HDInsight
-* Add parameters ''ResourceProviderConnection'' and ''PrivateLink'' to cmdlet ''New-AzHDInsightCluster'' to support relay outbound and private link feature
-* Add parameter ''AmbariDatabase'' to cmdlet ''New-AzHDInsightCluster'' to support custom Ambari database feature
-* Add accept value ''AmbariDatabase'' to the parameter ''MetastoreType'' of the cmdlet ''Add-AzHDInsightMetastore''
+Az.HealthcareApis
+* Added support for customer managed keys
Az.IotHub
-* Allowed tags in IoT Hub create cmdlet.
+* Fixed an issue of SAS token.
Az.KeyVault
-* Supported updating key vault tag
-
-Az.LogicApp
-* Fixed for Get-AzLogicAppRunHistory only retrieving the first page of results
-
-Az.Network
-* Updated below cmdlet
- - ''New-AzLoadBalancerFrontendIpConfigCommand'', ''Set-AzLoadBalancerFrontendIpConfigCommand'', ''Add-AzLoadBalancerFrontendIpConfigCommand'':
- - Added PublicIpAddressPrefix property
- - Added PublicIpAddressPrefixId property
-* Added new properties to the following cmdlets to allow for global load balancing
- - ''New-AzLoadBalancer'':
- - Added Sku Tier property
- - ''New-AzPuplicIpAddress'':
- - Added Sku Tier property
- - ''New-AzPublicIpPrefix'':
- - Added Sku Tier property
- - ''New-AzLoadBalancerBackendAddressConfig'':
- - Added LoadBalancerFrontendIPConfigurationId property
-* Updated planning to deprecate warnings for the following cmdlets
- -''New-AzVirtualHubRoute''
- -''New-AzVirtualHubRouteTable''
- -''Add-AzVirtualHubRoute''
- -''Add-AzVirtualHubRouteTable''
- -''Get-AzVirtualHubRouteTable''
- -''Remove-AzVirtualHubRouteTable''
-* Added planning to deprecate warnings on the argument ''RouteTable'' for the following cmdlets
- -''New-AzVirtualHub''
- -''Set-AzVirtualHub''
- -''Update-AzVirtualHub''
-* Made arguments ''-MinScaleUnits'' and ''-MaxScaleUnits'' optional in ''Set-AzExpressRouteGateway''
-* Added new cmdlets to support Mutual Authentication and SSL Profiles on Application Gateway
- - ''Get-AzApplicationGatewayClientAuthConfiguration''
- - ''New-AzApplicationGatewayClientAuthConfiguration''
- - ''Remove-AzApplicationGatewayClientAuthConfiguration''
- - ''Set-AzApplicationGatewayClientAuthConfiguration''
- - ''Add-AzApplicationGatewayTrustedClientCertificate''
- - ''Get-AzApplicationGatewayTrustedClientCertificate''
- - ''New-AzApplicationGatewayTrustedClientCertificate''
- - ''Remove-AzApplicationGatewayTrustedClientCertificate''
- - ''Set-AzApplicationGatewayTrustedClientCertificate''
- - ''Add-AzApplicationGatewaySslProfile''
- - ''Get-AzApplicationGatewaySslProfile''
- - ''New-AzApplicationGatewaySslProfile''
- - ''Remove-AzApplicationGatewaySslProfile''
- - ''Set-AzApplicationGatewaySslProfile''
- - ''Get-AzApplicationGatewaySslProfilePolicy''
- - ''Remove-AzApplicationGatewaySslProfilePolicy''
- - ''Set-AzApplicationGatewaySslProfilePolicy''
+* Supported ''all'' as an option when setting key vault access policies
+* Supported new version of SecretManagement module [#13366]
+* Supported ByteArray, String, PSCredential and Hashtable for ''SecretValue'' in SecretManagementModule [#12190]
+* [Breaking change] redesigned the API surface of cmdlets related to managed HSM.
+
+Az.Monitor
+* Changed parameter ''Rule'' of ''New-AzAutoscaleProfile'' to accept empty list. [#12903]
+* Added new cmdlets to support creating diagnostic settings more flexible:
+ * ''Get-AzDiagnosticSettingCategory''
+ * ''New-AzDiagnosticSetting''
+ * ''New-AzDiagnosticDetailSetting''
Az.RecoveryServices
-* Specifying policy BackupTime is in UTC.
-* Modifying breaking change warning in Get-AzRecoveryServicesBackupJobDetails cmdlet.
-* Updating sample script help text for Set-AzRecoveryServicesBackupProtectionPolicy cmdlet.
+* Made help text and parameter set name changes to ''Restore-AzRecoveryServicesBackupItem'' cmdlet.
Az.Resources
-* Fixed an issue where What-If shows two resource group scopes with different casing
-* Updated ''Export-AzResourceGroup'' to use the SDK.
-* Added culture info to parse methods
+* Added ''-Tag'' parameter support to ''Set-AzTemplateSpec'' and ''New-AzTemplateSpec''
+* Added Tag display support to default formatter for Template Specs
+
+Az.ServiceFabric
+* Added example to ''Set-AzServiceFabricSetting'' with SettingsSectionDescription param
+* Updated application related cmdlets to call out that support is only for ARM deployed resources
+* Marked for deprecation cluster cert cmdlets ''Add-AzureRmServiceFabricClusterCertificate'' and ''Remove-AzureRmServiceFabricClusterCertificate''
Az.Sql
-* Fixed issues where Set-AzSqlDatabaseAudit were not support Hyperscale database and database edition cannot be determined
-* Added MaintenanceConfigurationId to ''New-AzSqlInstance'' and ''Set-AzSqlInstance''
-* Fixed a bug in GetAzureSqlDatabaseReplicationLink.cs where PartnerServerName parameter was being checked for by value instead of key
+* Added SecondaryType to the following:
+ - ''New-AzSqlDatabase''
+ - ''Set-AzSqlDatabase''
+ - ''New-AzSqlDatabaseSecondary''
+* Added HighAvailabilityReplicaCount to the following:
+ - ''New-AzSqlDatabase''
+ - ''Set-AzSqlDatabase''
+* Made ReadReplicaCount an alias of HighAvailabilityReplicaCount in the following:
+ - ''New-AzSqlDatabase''
+ - ''Set-AzSqlDatabase''
+
+Az.Storage
+* Supported upload Azure File size up to 4 TiB
+ - ''Set-AzStorageFileContent''
+* Upgraded Azure.Storage.Blobs to 12.7.0
+* Upgraded Azure.Storage.Files.Shares to 12.5.0
+* Upgraded Azure.Storage.Files.DataLake to 12.5.0
+
+Az.StorageSync
+* Added Sync tiering policy feature with download policy and local cache mode
Az.Websites
-* Added support for new access restriction features: ServiceTag, multi-ip and http-headers
+* Prevent duplicate access restriction rules
'
# 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 d404ae52dc7e..16a1574eff8e 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.Common",
"Name": "Microsoft.Azure.Commands.Common.VTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProfileName": "System.String"
},
@@ -530,7 +530,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -770,7 +770,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1147,7 +1147,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1500,7 +1500,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1901,7 +1901,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2258,7 +2258,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2707,7 +2707,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3159,7 +3159,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3639,7 +3639,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3808,7 +3808,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4012,7 +4012,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4250,7 +4250,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4488,7 +4488,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4665,7 +4665,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4818,7 +4818,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5710,7 +5710,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6212,7 +6212,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6389,7 +6389,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6542,7 +6542,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8069,7 +8069,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8371,7 +8371,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8682,7 +8682,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9008,7 +9008,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9290,7 +9290,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9545,7 +9545,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9773,7 +9773,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10884,7 +10884,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11775,7 +11775,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12322,7 +12322,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12523,7 +12523,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12676,7 +12676,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13198,7 +13198,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13364,7 +13364,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14219,7 +14219,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14631,7 +14631,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15533,7 +15533,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16080,7 +16080,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17079,7 +17079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Models",
"Name": "Microsoft.Azure.Commands.Profile.Models.PSAccessToken",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSAccessToken, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSAccessToken, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpiresOn": "System.DateTimeOffset",
"Token": "System.String",
@@ -17645,7 +17645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Models",
"Name": "Microsoft.Azure.Commands.Profile.Models.PSHttpResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSHttpResponse, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSHttpResponse, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Int32",
"Headers": "System.Net.Http.Headers.HttpResponseHeaders",
@@ -18475,7 +18475,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ErrorCategory": "System.Management.Automation.ErrorCategoryInfo",
"ErrorDetails": "System.Management.Automation.ErrorDetails",
@@ -18532,7 +18532,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InnerException": "System.Boolean",
"Exception": "System.Exception",
@@ -18602,7 +18602,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestMessage": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo",
"ServerResponse": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo",
@@ -19035,7 +19035,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19249,7 +19249,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19450,7 +19450,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19610,7 +19610,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -19843,7 +19843,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -19936,7 +19936,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20126,7 +20126,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20303,7 +20303,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21009,7 +21009,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21151,7 +21151,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21369,7 +21369,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21511,7 +21511,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21729,7 +21729,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21871,7 +21871,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22086,7 +22086,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22276,7 +22276,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22631,7 +22631,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22906,7 +22906,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23107,7 +23107,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23462,7 +23462,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23737,7 +23737,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23938,7 +23938,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24257,7 +24257,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24484,7 +24484,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24637,7 +24637,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25838,7 +25838,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]",
"Verb": "System.String",
@@ -25935,7 +25935,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=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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 204c10b24752..b03a5af1305d 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
@@ -33,7 +33,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -122,7 +122,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -142,7 +142,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -199,7 +199,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -306,7 +306,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -332,7 +332,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -399,7 +399,7 @@
"Name": "Add-AzApiManagementApiToProduct",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.AddAzureApiManagementApiToProduct",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -426,7 +426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -515,7 +515,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -572,7 +572,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -679,7 +679,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -746,7 +746,7 @@
"Name": "Add-AzApiManagementProductToGroup",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.AddAzureApiManagementProductToGroup",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -773,7 +773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -862,7 +862,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -919,7 +919,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -1026,7 +1026,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1093,7 +1093,7 @@
"Name": "Add-AzApiManagementUserToGroup",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.AddAzureApiManagementUserToGroup",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -1120,7 +1120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -1209,7 +1209,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1266,7 +1266,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -1373,7 +1373,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1467,7 +1467,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -1556,7 +1556,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1677,7 +1677,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1695,7 +1695,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1752,7 +1752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -1859,7 +1859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2036,7 +2036,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2060,7 +2060,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2084,7 +2084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -2191,7 +2191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2347,7 +2347,7 @@
"Name": "Get-AzApiManagementApi",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementApi",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetAllApis",
"OutputTypes": [
@@ -2355,7 +2355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -2431,7 +2431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -2613,7 +2613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -2764,7 +2764,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -2891,7 +2891,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3018,7 +3018,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3145,7 +3145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3251,7 +3251,7 @@
"Name": "Get-AzApiManagementApiRelease",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementApiRelease",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ContextParameterSet",
"OutputTypes": [
@@ -3259,7 +3259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -3330,7 +3330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3476,7 +3476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3738,7 +3738,7 @@
"Name": "Get-AzApiManagementApiRevision",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementApiRevision",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -3746,7 +3746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRevision",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRevision, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRevision, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsOnline": "System.Nullable`1[System.Boolean]",
"IsCurrent": "System.Nullable`1[System.Boolean]",
@@ -3806,7 +3806,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3934,7 +3934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4084,7 +4084,7 @@
"Name": "Get-AzApiManagementApiSchema",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementApiSchema",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ContextParameterSet",
"OutputTypes": [
@@ -4092,7 +4092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -4162,7 +4162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4308,7 +4308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4570,7 +4570,7 @@
"Name": "Get-AzApiManagementApiVersionSet",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementApiVersionSet",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ContextParameterSet",
"OutputTypes": [
@@ -4578,7 +4578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -4650,7 +4650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4778,7 +4778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4929,7 +4929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5059,7 +5059,7 @@
"Name": "Get-AzApiManagementAuthorizationServer",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementAuthorizationServer",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ContextParameterSet",
"OutputTypes": [
@@ -5067,7 +5067,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessTokenSendingMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]",
"AuthorizationRequestMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]",
@@ -5149,7 +5149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5277,7 +5277,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5563,7 +5563,7 @@
"Name": "Get-AzApiManagementAuthorizationServerClientSecret",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementAuthorizationServerClientSecret",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ContextParameterSet",
"OutputTypes": [
@@ -5571,7 +5571,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientSecret": "System.String"
},
@@ -5624,7 +5624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5752,7 +5752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6038,7 +6038,7 @@
"Name": "Get-AzApiManagementBackend",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementBackend",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ContextParameterSet",
"OutputTypes": [
@@ -6046,7 +6046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credentials": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
"Proxy": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
@@ -6121,7 +6121,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6249,7 +6249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6535,7 +6535,7 @@
"Name": "Get-AzApiManagementCache",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementCache",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ContextParameterSet",
"OutputTypes": [
@@ -6543,7 +6543,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -6613,7 +6613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6741,7 +6741,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6987,7 +6987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpirationDate": "System.DateTime",
"CertificateId": "System.String",
@@ -7057,7 +7057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7185,7 +7185,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7471,7 +7471,7 @@
"Name": "Get-AzApiManagementDiagnostic",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementDiagnostic",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ContextParameterSet",
"OutputTypes": [
@@ -7479,7 +7479,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -7553,7 +7553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7699,7 +7699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7961,7 +7961,7 @@
"Name": "Get-AzApiManagementGateway",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementGateway",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetAllGateways",
"OutputTypes": [
@@ -7969,7 +7969,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -8037,7 +8037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8147,7 +8147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8274,7 +8274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8380,7 +8380,7 @@
"Name": "Get-AzApiManagementGatewayHostnameConfiguration",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementGatewayHostnameConfiguration",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetByGatewayId",
"OutputTypes": [
@@ -8388,7 +8388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NegotiateClientCertificate": "System.Nullable`1[System.Boolean]",
"Hostname": "System.String",
@@ -8459,7 +8459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8587,7 +8587,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8714,7 +8714,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8865,7 +8865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8967,7 +8967,7 @@
"Name": "Get-AzApiManagementGatewayKey",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementGatewayKey",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetByGatewayId",
"OutputTypes": [
@@ -8975,7 +8975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayKey, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayKey, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrimaryKey": "System.String",
"SecondaryKey": "System.String"
@@ -9029,7 +9029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9139,7 +9139,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9266,7 +9266,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9368,7 +9368,7 @@
"Name": "Get-AzApiManagementGroup",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementGroup",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetAllGroups",
"OutputTypes": [
@@ -9376,7 +9376,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType",
"System": "System.Boolean",
@@ -9436,7 +9436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9600,7 +9600,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9751,7 +9751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9902,7 +9902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10053,7 +10053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10183,7 +10183,7 @@
"Name": "Get-AzApiManagementIdentityProvider",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementIdentityProvider",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "AllIdentityProviders",
"OutputTypes": [
@@ -10191,7 +10191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
"ClientId": "System.String",
@@ -10256,7 +10256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10309,7 +10309,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10451,7 +10451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10554,7 +10554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10663,7 +10663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10769,7 +10769,7 @@
"Name": "Get-AzApiManagementIdentityProviderClientSecret",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementIdentityProviderClientSecret",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "IdentityProviderByType",
"OutputTypes": [
@@ -10777,7 +10777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientSecret": "System.String"
},
@@ -10830,7 +10830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10883,7 +10883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11025,7 +11025,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11128,7 +11128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11237,7 +11237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11339,7 +11339,7 @@
"Name": "Get-AzApiManagementLogger",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementLogger",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetAllLoggers",
"OutputTypes": [
@@ -11347,7 +11347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLoggerType",
"IsBuffered": "System.Nullable`1[System.Boolean]",
@@ -11406,7 +11406,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11516,7 +11516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11643,7 +11643,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11749,7 +11749,7 @@
"Name": "Get-AzApiManagementNamedValue",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementNamedValue",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetAllNamedValues",
"OutputTypes": [
@@ -11757,7 +11757,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Secret": "System.Boolean",
"NamedValueId": "System.String",
@@ -11817,7 +11817,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11963,7 +11963,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12090,7 +12090,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12217,7 +12217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12344,7 +12344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12450,7 +12450,7 @@
"Name": "Get-AzApiManagementNamedValueSecretValue",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementNamedValueSecretValue",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "Default",
"OutputTypes": [
@@ -12458,7 +12458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValueSecretValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValueSecretValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValueSecretValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.String"
},
@@ -12511,7 +12511,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12621,7 +12621,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12748,7 +12748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12854,7 +12854,7 @@
"Name": "Get-AzApiManagementOpenIdConnectProvider",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementOpenIdConnectProvider",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetAllOpenIdConnectProviders",
"OutputTypes": [
@@ -12862,7 +12862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OpenIdConnectProviderId": "System.String",
"Name": "System.String",
@@ -12923,7 +12923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -13051,7 +13051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -13178,7 +13178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -13305,7 +13305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -13411,7 +13411,7 @@
"Name": "Get-AzApiManagementOpenIdConnectProviderClientSecret",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementOpenIdConnectProviderClientSecret",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetByOpenIdConnectProviderId",
"OutputTypes": [
@@ -13419,7 +13419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientSecret": "System.String"
},
@@ -13472,7 +13472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -13582,7 +13582,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -13709,7 +13709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -13811,7 +13811,7 @@
"Name": "Get-AzApiManagementOperation",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementOperation",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetAllApiOperations",
"OutputTypes": [
@@ -13819,7 +13819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TemplateParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest",
@@ -13883,7 +13883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -14029,7 +14029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -14180,7 +14180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -14355,7 +14355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -14484,7 +14484,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -14645,7 +14645,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14702,7 +14702,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -14809,7 +14809,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14901,7 +14901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -15008,7 +15008,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15124,7 +15124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -15231,7 +15231,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15371,7 +15371,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -15478,7 +15478,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15549,7 +15549,7 @@
"Name": "Get-AzApiManagementProduct",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementProduct",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetAllProducts",
"OutputTypes": [
@@ -15557,7 +15557,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState",
"SubscriptionRequired": "System.Nullable`1[System.Boolean]",
@@ -15623,7 +15623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -15769,7 +15769,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -15896,7 +15896,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16023,7 +16023,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16150,7 +16150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16256,7 +16256,7 @@
"Name": "Get-AzApiManagementSubscription",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementSubscription",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetAllSubscriptions",
"OutputTypes": [
@@ -16264,7 +16264,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -16350,7 +16350,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16514,7 +16514,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16641,7 +16641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16792,7 +16792,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16919,7 +16919,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -17046,7 +17046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -17173,7 +17173,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -17279,7 +17279,7 @@
"Name": "Get-AzApiManagementSubscriptionKey",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementSubscriptionKey",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetBySubscriptionId",
"OutputTypes": [
@@ -17287,7 +17287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionKey, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionKey, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrimaryKey": "System.String",
"SecondaryKey": "System.String"
@@ -17341,7 +17341,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -17451,7 +17451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -17578,7 +17578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -17680,7 +17680,7 @@
"Name": "Get-AzApiManagementTenantSyncState",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementTenantSyncState",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -17688,7 +17688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementTenantConfigurationSyncState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementTenantConfigurationSyncState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementTenantConfigurationSyncState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsExport": "System.Boolean",
"IsSynced": "System.Boolean",
@@ -17747,7 +17747,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -17839,7 +17839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -17941,7 +17941,7 @@
"Name": "Get-AzApiManagementUser",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementUser",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GeAllUsers",
"OutputTypes": [
@@ -17949,7 +17949,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState",
"Identities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -18012,7 +18012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -18119,7 +18119,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18214,7 +18214,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -18341,7 +18341,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -18492,7 +18492,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18566,7 +18566,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -18672,7 +18672,7 @@
"Name": "Get-AzApiManagementUserSsoUrl",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementUserSsoUrl",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -18699,7 +18699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -18809,7 +18809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -18935,7 +18935,7 @@
"Name": "Get-AzApiManagementTenantAccess",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureRmApiManagementTenantAccess",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -18943,7 +18943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Id": "System.String",
@@ -18999,7 +18999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -19091,7 +19091,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -19193,7 +19193,7 @@
"Name": "Get-AzApiManagementTenantAccessSecret",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureRmApiManagementTenantAccessSecret",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -19201,7 +19201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Id": "System.String",
@@ -19257,7 +19257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -19349,7 +19349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -19451,7 +19451,7 @@
"Name": "Get-AzApiManagementTenantGitAccess",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureRmApiManagementTenantGitAccess",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -19459,7 +19459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Id": "System.String",
@@ -19515,7 +19515,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -19607,7 +19607,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -19709,7 +19709,7 @@
"Name": "Get-AzApiManagementTenantGitAccessSecret",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureRmApiManagementTenantGitAccessSecret",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -19717,7 +19717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Id": "System.String",
@@ -19773,7 +19773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -19865,7 +19865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -19967,7 +19967,7 @@
"Name": "Import-AzApiManagementApi",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.ImportAzureApiManagementApi",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ImportFromLocalFile",
"OutputTypes": [
@@ -19975,7 +19975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -20051,7 +20051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -20140,7 +20140,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20333,7 +20333,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -20353,7 +20353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -20464,7 +20464,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -20571,7 +20571,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20752,7 +20752,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -20778,7 +20778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -20942,7 +20942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -21049,7 +21049,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21230,7 +21230,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21256,7 +21256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -21420,7 +21420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -21527,7 +21527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21708,7 +21708,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21734,7 +21734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -21873,7 +21873,7 @@
"Name": "New-AzApiManagementApi",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementApi",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -21881,7 +21881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -21957,7 +21957,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -22100,7 +22100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -22244,7 +22244,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22391,7 +22391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -22570,7 +22570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -22762,7 +22762,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22957,7 +22957,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -23027,7 +23027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -23191,7 +23191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -23397,7 +23397,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -23473,7 +23473,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -23655,7 +23655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -23885,7 +23885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -23955,7 +23955,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -24137,7 +24137,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -24336,7 +24336,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -24535,7 +24535,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -24717,7 +24717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -24788,7 +24788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -24877,7 +24877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25073,7 +25073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -25180,7 +25180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25404,7 +25404,7 @@
"Name": "New-AzApiManagementAuthorizationServer",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementAuthorizationServer",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -25412,7 +25412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessTokenSendingMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]",
"AuthorizationRequestMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]",
@@ -25494,7 +25494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -25691,7 +25691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod",
"GenericTypeArguments": [],
@@ -25709,7 +25709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType",
"GenericTypeArguments": [],
@@ -25727,7 +25727,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod",
"GenericTypeArguments": [],
@@ -25801,7 +25801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod",
"GenericTypeArguments": [],
@@ -25894,7 +25894,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -26145,7 +26145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod",
"GenericTypeArguments": [],
@@ -26169,7 +26169,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType",
"GenericTypeArguments": [],
@@ -26193,7 +26193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod",
"GenericTypeArguments": [],
@@ -26291,7 +26291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod",
"GenericTypeArguments": [],
@@ -26414,7 +26414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credentials": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
"Proxy": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
@@ -26489,7 +26489,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -26693,7 +26693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -26748,7 +26748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -26801,7 +26801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -26896,7 +26896,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -27154,7 +27154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -27215,7 +27215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -27274,7 +27274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -27379,7 +27379,7 @@
"Name": "New-AzApiManagementBackendCredential",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementBackendCredential",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -27387,7 +27387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -27735,7 +27735,7 @@
"Name": "New-AzApiManagementBackendProxy",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementBackendProxy",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -27743,7 +27743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -27815,7 +27815,7 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27896,7 +27896,7 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27963,7 +27963,7 @@
"Name": "New-AzApiManagementBackendServiceFabric",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementBackendServiceFabric",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -27971,7 +27971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -28332,7 +28332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -28401,7 +28401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -28565,7 +28565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -28763,7 +28763,7 @@
"Name": "New-AzApiManagementCertificate",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementCertificate",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "LoadFromFile",
"OutputTypes": [
@@ -28771,7 +28771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpirationDate": "System.DateTime",
"CertificateId": "System.String",
@@ -28840,7 +28840,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29004,7 +29004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29179,7 +29179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29354,7 +29354,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29504,7 +29504,7 @@
"Name": "New-AzApiManagementContext",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementContext",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ContextParameterSet",
"OutputTypes": [
@@ -29512,7 +29512,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29871,7 +29871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -29944,7 +29944,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -30069,7 +30069,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -30122,7 +30122,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -30175,7 +30175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -30267,7 +30267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -30422,7 +30422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -30481,7 +30481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -30540,7 +30540,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -30650,7 +30650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -30718,7 +30718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -30807,7 +30807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -30901,7 +30901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31008,7 +31008,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -31120,7 +31120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NegotiateClientCertificate": "System.Nullable`1[System.Boolean]",
"Hostname": "System.String",
@@ -31190,7 +31190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31315,7 +31315,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31372,7 +31372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31527,7 +31527,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31594,7 +31594,7 @@
"Name": "New-AzApiManagementGroup",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementGroup",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -31602,7 +31602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType",
"System": "System.Boolean",
@@ -31662,7 +31662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31769,7 +31769,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -31846,7 +31846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31977,7 +31977,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32070,7 +32070,7 @@
"Name": "New-AzApiManagementHttpMessageDiagnostic",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementHttpMessageDiagnostic",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -32078,7 +32078,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -32310,7 +32310,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
"ClientId": "System.String",
@@ -32375,7 +32375,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -32428,7 +32428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32732,7 +32732,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -32791,7 +32791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33159,7 +33159,7 @@
"Name": "New-AzApiManagementLogger",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementLogger",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "EventHubLoggerSet",
"OutputTypes": [
@@ -33167,7 +33167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLoggerType",
"IsBuffered": "System.Nullable`1[System.Boolean]",
@@ -33227,7 +33227,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -33429,7 +33429,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -33654,7 +33654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -33829,7 +33829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -33987,7 +33987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Secret": "System.Boolean",
"NamedValueId": "System.String",
@@ -34047,7 +34047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -34154,7 +34154,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34229,7 +34229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -34360,7 +34360,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34451,7 +34451,7 @@
"Name": "New-AzApiManagementOpenIdConnectProvider",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementOpenIdConnectProvider",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -34459,7 +34459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OpenIdConnectProviderId": "System.String",
"Name": "System.String",
@@ -34520,7 +34520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -34720,7 +34720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -34966,7 +34966,7 @@
"Name": "New-AzApiManagementOperation",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementOperation",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -34974,7 +34974,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TemplateParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest",
@@ -35038,7 +35038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -35217,7 +35217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter",
"GenericTypeArguments": [],
@@ -35235,7 +35235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueryParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Headers": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
@@ -35290,7 +35290,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse",
"GenericTypeArguments": [],
@@ -35347,7 +35347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -35574,7 +35574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter",
"GenericTypeArguments": [],
@@ -35598,7 +35598,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueryParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Headers": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
@@ -35659,7 +35659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse",
"GenericTypeArguments": [],
@@ -35726,7 +35726,7 @@
"Name": "New-AzApiManagementPipelineDiagnosticSetting",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementPipelineDiagnosticSetting",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -35734,7 +35734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -35788,7 +35788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -35841,7 +35841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -35933,7 +35933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -35992,7 +35992,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -36094,7 +36094,7 @@
"Name": "New-AzApiManagementProduct",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementProduct",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -36102,7 +36102,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState",
"SubscriptionRequired": "System.Nullable`1[System.Boolean]",
@@ -36165,7 +36165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -36350,7 +36350,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -36409,7 +36409,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -36642,7 +36642,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -36711,7 +36711,7 @@
"Name": "New-AzApiManagementResourceLocationObject",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementResourceLocationObject",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -36719,7 +36719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -37025,7 +37025,7 @@
"Name": "New-AzApiManagementSamplingSetting",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementSamplingSetting",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -37033,7 +37033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -37257,7 +37257,7 @@
"Name": "New-AzApiManagementSubscription",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementSubscription",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "OldSubscriptionModel",
"OutputTypes": [
@@ -37265,7 +37265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -37346,7 +37346,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -37525,7 +37525,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -37543,7 +37543,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -37602,7 +37602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -37757,7 +37757,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -37781,7 +37781,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -37899,7 +37899,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -38054,7 +38054,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38078,7 +38078,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -38196,7 +38196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -38351,7 +38351,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38375,7 +38375,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -38444,7 +38444,7 @@
"Name": "New-AzApiManagementUser",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementUser",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -38452,7 +38452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState",
"Identities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -38515,7 +38515,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -38658,7 +38658,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -38735,7 +38735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -38914,7 +38914,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -39007,7 +39007,7 @@
"Name": "New-AzApiManagementUserToken",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementUserToken",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -39015,7 +39015,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserToken",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserToken, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserToken, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType",
"TokenExpiry": "System.DateTime",
@@ -39071,7 +39071,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -39142,7 +39142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39304,7 +39304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -39387,7 +39387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39573,7 +39573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorBody",
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.TenantConfigurationState",
@@ -39641,7 +39641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -39712,7 +39712,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39730,7 +39730,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39748,7 +39748,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39805,7 +39805,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -39888,7 +39888,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39912,7 +39912,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39936,7 +39936,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40030,7 +40030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -40101,7 +40101,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40158,7 +40158,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -40241,7 +40241,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40335,7 +40335,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -40424,7 +40424,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40481,7 +40481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -40588,7 +40588,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40655,7 +40655,7 @@
"Name": "Remove-AzApiManagementApiFromProduct",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.RemoveAzureApiManagementApiFromProduct",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -40682,7 +40682,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -40771,7 +40771,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40828,7 +40828,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -40935,7 +40935,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41029,7 +41029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -41082,7 +41082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -41187,7 +41187,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41244,7 +41244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -41351,7 +41351,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41419,7 +41419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -41494,7 +41494,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41562,7 +41562,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41657,7 +41657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -41746,7 +41746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -41821,7 +41821,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41878,7 +41878,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -41985,7 +41985,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42053,7 +42053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -42134,7 +42134,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42202,7 +42202,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42298,7 +42298,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -42387,7 +42387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -42473,7 +42473,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42530,7 +42530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -42637,7 +42637,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42705,7 +42705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -42779,7 +42779,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42871,7 +42871,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42939,7 +42939,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43033,7 +43033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -43086,7 +43086,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -43192,7 +43192,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43249,7 +43249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -43332,7 +43332,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43400,7 +43400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -43476,7 +43476,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43568,7 +43568,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43636,7 +43636,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43730,7 +43730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -43801,7 +43801,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43858,7 +43858,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -43941,7 +43941,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44035,7 +44035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -44106,7 +44106,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44163,7 +44163,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -44246,7 +44246,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44342,7 +44342,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -44413,7 +44413,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -44499,7 +44499,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44556,7 +44556,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -44639,7 +44639,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44707,7 +44707,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -44781,7 +44781,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44873,7 +44873,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44941,7 +44941,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45035,7 +45035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -45106,7 +45106,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45163,7 +45163,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -45246,7 +45246,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45342,7 +45342,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -45431,7 +45431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -45521,7 +45521,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45578,7 +45578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -45685,7 +45685,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45753,7 +45753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -45831,7 +45831,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45923,7 +45923,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45991,7 +45991,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46087,7 +46087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -46158,7 +46158,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -46243,7 +46243,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46300,7 +46300,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -46383,7 +46383,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46451,7 +46451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -46524,7 +46524,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46616,7 +46616,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46684,7 +46684,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46780,7 +46780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -46869,7 +46869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NegotiateClientCertificate": "System.Nullable`1[System.Boolean]",
"Hostname": "System.String",
@@ -46956,7 +46956,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47013,7 +47013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -47120,7 +47120,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47188,7 +47188,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NegotiateClientCertificate": "System.Nullable`1[System.Boolean]",
"Hostname": "System.String",
@@ -47263,7 +47263,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47355,7 +47355,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47423,7 +47423,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47517,7 +47517,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -47588,7 +47588,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47645,7 +47645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -47728,7 +47728,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47822,7 +47822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -47875,7 +47875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47978,7 +47978,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48035,7 +48035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -48094,7 +48094,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48203,7 +48203,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48297,7 +48297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -48368,7 +48368,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48425,7 +48425,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -48508,7 +48508,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48602,7 +48602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -48673,7 +48673,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48730,7 +48730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -48813,7 +48813,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48907,7 +48907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -48978,7 +48978,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49035,7 +49035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -49118,7 +49118,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49212,7 +49212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -49319,7 +49319,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49376,7 +49376,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -49507,7 +49507,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49601,7 +49601,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -49708,7 +49708,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49765,7 +49765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -49824,7 +49824,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49916,7 +49916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -49975,7 +49975,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50067,7 +50067,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -50126,7 +50126,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50242,7 +50242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -50301,7 +50301,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50399,7 +50399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -50470,7 +50470,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50488,7 +50488,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50545,7 +50545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -50628,7 +50628,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50652,7 +50652,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50719,7 +50719,7 @@
"Name": "Remove-AzApiManagementProductFromGroup",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.RemoveAzureApiManagementProductFromGroup",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -50746,7 +50746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -50835,7 +50835,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50892,7 +50892,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -50999,7 +50999,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51095,7 +51095,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -51166,7 +51166,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -51264,7 +51264,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51321,7 +51321,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -51404,7 +51404,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51472,7 +51472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -51558,7 +51558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -51641,7 +51641,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51733,7 +51733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -51816,7 +51816,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51914,7 +51914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -51985,7 +51985,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52003,7 +52003,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52060,7 +52060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -52143,7 +52143,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52167,7 +52167,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52234,7 +52234,7 @@
"Name": "Remove-AzApiManagementUserFromGroup",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.RemoveAzureApiManagementUserFromGroup",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -52261,7 +52261,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -52350,7 +52350,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52407,7 +52407,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -52514,7 +52514,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52589,7 +52589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorBody",
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.TenantConfigurationState",
@@ -52657,7 +52657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -52728,7 +52728,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52746,7 +52746,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52803,7 +52803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -52886,7 +52886,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52910,7 +52910,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52977,7 +52977,7 @@
"Name": "Set-AzApiManagementApi",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.SetAzureApiManagementApi",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ExpandedParameter",
"OutputTypes": [
@@ -52985,7 +52985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -53062,7 +53062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -53133,7 +53133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -53280,7 +53280,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -53406,7 +53406,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53424,7 +53424,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53481,7 +53481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -53660,7 +53660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -53828,7 +53828,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53852,7 +53852,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53920,7 +53920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -54097,7 +54097,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -54265,7 +54265,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -54289,7 +54289,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -54453,7 +54453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -54621,7 +54621,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -54645,7 +54645,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -54720,7 +54720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -54815,7 +54815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -54886,7 +54886,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -55033,7 +55033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -55159,7 +55159,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55177,7 +55177,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55258,7 +55258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -55437,7 +55437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -55605,7 +55605,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55629,7 +55629,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55697,7 +55697,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -55874,7 +55874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -56042,7 +56042,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56066,7 +56066,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56230,7 +56230,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -56398,7 +56398,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56422,7 +56422,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56497,7 +56497,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -56568,7 +56568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -56657,7 +56657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -56797,7 +56797,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56854,7 +56854,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -57033,7 +57033,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -57101,7 +57101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -57247,7 +57247,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -57411,7 +57411,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -57551,7 +57551,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -57626,7 +57626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -57698,7 +57698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -57751,7 +57751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -57857,7 +57857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -58014,7 +58014,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -58071,7 +58071,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -58178,7 +58178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -58359,7 +58359,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -58427,7 +58427,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -58527,7 +58527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -58708,7 +58708,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -58800,7 +58800,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -58981,7 +58981,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -59048,7 +59048,7 @@
"Name": "Set-AzApiManagementAuthorizationServer",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.SetAzureApiManagementAuthorizationServer",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -59056,7 +59056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessTokenSendingMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]",
"AuthorizationRequestMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]",
@@ -59138,7 +59138,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -59335,7 +59335,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod",
"GenericTypeArguments": [],
@@ -59353,7 +59353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType",
"GenericTypeArguments": [],
@@ -59371,7 +59371,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod",
"GenericTypeArguments": [],
@@ -59445,7 +59445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod",
"GenericTypeArguments": [],
@@ -59499,7 +59499,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -59556,7 +59556,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -59807,7 +59807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod",
"GenericTypeArguments": [],
@@ -59831,7 +59831,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType",
"GenericTypeArguments": [],
@@ -59855,7 +59855,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod",
"GenericTypeArguments": [],
@@ -59953,7 +59953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod",
"GenericTypeArguments": [],
@@ -60025,7 +60025,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60100,7 +60100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credentials": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
"Proxy": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
@@ -60175,7 +60175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -60246,7 +60246,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credentials": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
"Proxy": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
@@ -60453,7 +60453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -60508,7 +60508,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -60561,7 +60561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -60617,7 +60617,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60674,7 +60674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -60932,7 +60932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -60993,7 +60993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -61052,7 +61052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -61114,7 +61114,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61182,7 +61182,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credentials": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
"Proxy": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
@@ -61437,7 +61437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -61498,7 +61498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -61557,7 +61557,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -61619,7 +61619,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61862,7 +61862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -61923,7 +61923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -61982,7 +61982,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -62044,7 +62044,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62111,7 +62111,7 @@
"Name": "Set-AzApiManagementCertificate",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.SetAzureApiManagementCertificate",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "LoadFromFile",
"OutputTypes": [
@@ -62119,7 +62119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpirationDate": "System.DateTime",
"CertificateId": "System.String",
@@ -62188,7 +62188,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -62313,7 +62313,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62370,7 +62370,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -62477,7 +62477,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62569,7 +62569,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -62676,7 +62676,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62768,7 +62768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -62875,7 +62875,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62950,7 +62950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -63025,7 +63025,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -63096,7 +63096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -63240,7 +63240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -63293,7 +63293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -63346,7 +63346,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -63399,7 +63399,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -63456,7 +63456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -63611,7 +63611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -63670,7 +63670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -63729,7 +63729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -63788,7 +63788,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -63856,7 +63856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -63982,7 +63982,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -64041,7 +64041,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -64100,7 +64100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -64159,7 +64159,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64299,7 +64299,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -64358,7 +64358,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -64417,7 +64417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -64476,7 +64476,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64592,7 +64592,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -64651,7 +64651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -64710,7 +64710,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -64769,7 +64769,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64844,7 +64844,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType",
"System": "System.Boolean",
@@ -64904,7 +64904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -65011,7 +65011,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65068,7 +65068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -65199,7 +65199,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65274,7 +65274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
"ClientId": "System.String",
@@ -65340,7 +65340,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -65393,7 +65393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65496,7 +65496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
"ClientId": "System.String",
@@ -65722,7 +65722,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65779,7 +65779,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -65838,7 +65838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66163,7 +66163,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66231,7 +66231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
"ClientId": "System.String",
@@ -66517,7 +66517,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66801,7 +66801,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66876,7 +66876,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLoggerType",
"IsBuffered": "System.Nullable`1[System.Boolean]",
@@ -66936,7 +66936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -67079,7 +67079,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -67097,7 +67097,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -67154,7 +67154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -67261,7 +67261,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -67377,7 +67377,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -67401,7 +67401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -67508,7 +67508,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -67600,7 +67600,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -67707,7 +67707,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -67782,7 +67782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Secret": "System.Boolean",
"NamedValueId": "System.String",
@@ -67842,7 +67842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -67987,7 +67987,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -68044,7 +68044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -68225,7 +68225,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -68300,7 +68300,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OpenIdConnectProviderId": "System.String",
"Name": "System.String",
@@ -68361,7 +68361,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -68522,7 +68522,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -68579,7 +68579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -68782,7 +68782,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -68857,7 +68857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TemplateParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest",
@@ -68921,7 +68921,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -69100,7 +69100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter",
"GenericTypeArguments": [],
@@ -69118,7 +69118,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueryParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Headers": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
@@ -69173,7 +69173,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse",
"GenericTypeArguments": [],
@@ -69191,7 +69191,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -69248,7 +69248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -69475,7 +69475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter",
"GenericTypeArguments": [],
@@ -69499,7 +69499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueryParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Headers": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
@@ -69560,7 +69560,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse",
"GenericTypeArguments": [],
@@ -69584,7 +69584,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -69651,7 +69651,7 @@
"Name": "Set-AzApiManagementPolicy",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.SetAzureApiManagementPolicy",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "SetTenantLevel",
"OutputTypes": [
@@ -69678,7 +69678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -69875,7 +69875,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -69932,7 +69932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -70087,7 +70087,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -70179,7 +70179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -70334,7 +70334,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -70450,7 +70450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -70605,7 +70605,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -70745,7 +70745,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -70900,7 +70900,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -70979,7 +70979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState",
"SubscriptionRequired": "System.Nullable`1[System.Boolean]",
@@ -71042,7 +71042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -71227,7 +71227,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -71247,7 +71247,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -71304,7 +71304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -71537,7 +71537,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -71563,7 +71563,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -71638,7 +71638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -71720,7 +71720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -71791,7 +71791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -71961,7 +71961,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -72019,7 +72019,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72076,7 +72076,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -72279,7 +72279,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -72355,7 +72355,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72423,7 +72423,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -72629,7 +72629,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -72705,7 +72705,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72893,7 +72893,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, 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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -72969,7 +72969,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -73044,7 +73044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState",
"Identities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -73107,7 +73107,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -73250,7 +73250,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -73371,7 +73371,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -73428,7 +73428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -73607,7 +73607,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -73740,7 +73740,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -73807,7 +73807,7 @@
"Name": "Set-AzApiManagementTenantAccess",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.SetAzureRmApiManagementTenantAccess",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -73815,7 +73815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Id": "System.String",
@@ -73871,7 +73871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -73942,7 +73942,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -73999,7 +73999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -74082,7 +74082,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -74157,7 +74157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -74228,7 +74228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -74335,7 +74335,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -74404,7 +74404,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -74461,7 +74461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -74592,7 +74592,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -74684,7 +74684,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -74752,7 +74752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -74851,7 +74851,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -74926,7 +74926,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -74997,7 +74997,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -75068,7 +75068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -75208,7 +75208,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -75265,7 +75265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -75420,7 +75420,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -75488,7 +75488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -75634,7 +75634,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -75798,7 +75798,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -75938,7 +75938,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76013,7 +76013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -76083,7 +76083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -76154,7 +76154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -76257,7 +76257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -76312,7 +76312,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76369,7 +76369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -76476,7 +76476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -76537,7 +76537,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76605,7 +76605,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -76702,7 +76702,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -76763,7 +76763,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76879,7 +76879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -76940,7 +76940,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77032,7 +77032,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -77093,7 +77093,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77309,7 +77309,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77463,6 +77463,8 @@
"Properties": {
"OnPremise": "System.Boolean",
"VersionProfiles": "System.Collections.Generic.IList`1[System.String]",
+ "Name": "System.String",
+ "AdTenant": "System.String",
"AzureDataLakeStoreFileSystemEndpointSuffix": "System.String",
"AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String",
"BatchEndpointResourceId": "System.String",
@@ -77472,7 +77474,6 @@
"AzureKeyVaultDnsSuffix": "System.String",
"TrafficManagerDnsSuffix": "System.String",
"SqlDatabaseDnsSuffix": "System.String",
- "StorageEndpointSuffix": "System.String",
"ActiveDirectoryServiceEndpointResourceId": "System.String",
"GraphUrl": "System.String",
"GalleryUrl": "System.String",
@@ -77481,8 +77482,8 @@
"ManagementPortalUrl": "System.String",
"ResourceManagerUrl": "System.String",
"ServiceManagementUrl": "System.String",
- "AdTenant": "System.String",
- "Name": "System.String"
+ "StorageEndpointSuffix": "System.String",
+ "ContainerRegistryEndpointSuffix": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77604,7 +77605,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
"GenericTypeArguments": [],
@@ -77614,7 +77615,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77753,7 +77754,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77848,7 +77849,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod",
"GenericTypeArguments": [],
@@ -77858,7 +77859,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77953,7 +77954,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod",
"GenericTypeArguments": [],
@@ -77963,7 +77964,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -78058,7 +78059,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod",
"GenericTypeArguments": [],
@@ -78068,7 +78069,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -78163,7 +78164,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType",
"GenericTypeArguments": [],
@@ -78173,7 +78174,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -78278,7 +78279,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -78325,7 +78326,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scheme": "System.String",
"Parameter": "System.String"
@@ -78382,7 +78383,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -78427,7 +78428,7 @@
"System.Management.Automation.PSCredential": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -78437,7 +78438,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -78520,7 +78521,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -78565,7 +78566,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -78610,7 +78611,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BodyBytesToLog": "System.Nullable`1[System.Int32]"
},
@@ -78654,7 +78655,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -78711,7 +78712,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -78758,7 +78759,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -78853,7 +78854,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -78948,7 +78949,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLoggerType": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLoggerType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLoggerType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLoggerType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -79043,7 +79044,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter",
"GenericTypeArguments": [],
@@ -79053,7 +79054,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Required": "System.Boolean",
"Name": "System.String",
@@ -79102,7 +79103,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueryParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Headers": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
@@ -79149,7 +79150,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation",
"GenericTypeArguments": [],
@@ -79159,7 +79160,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FormParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"ContentType": "System.String",
@@ -79207,7 +79208,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse",
"GenericTypeArguments": [],
@@ -79217,7 +79218,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Representations": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation[]",
"StatusCode": "System.Int32",
@@ -79263,7 +79264,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -79358,7 +79359,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -79453,7 +79454,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -79548,7 +79549,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -79643,7 +79644,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -79738,7 +79739,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorBody": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorBody",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorBody, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorBody, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Details": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField[]",
"Message": "System.String",
@@ -79794,7 +79795,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField",
"GenericTypeArguments": [],
@@ -79804,7 +79805,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Code": "System.String",
"Message": "System.String",
@@ -79860,7 +79861,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.TenantConfigurationState": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.TenantConfigurationState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.TenantConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.TenantConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
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 16b373cf0d5f..f074a087d05a 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
@@ -6,7 +6,7 @@
"Name": "Add-AzApiManagementRegion",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.AddAzureApiManagementRegion",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -14,7 +14,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -162,7 +162,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -327,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=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.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -460,7 +460,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -637,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=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.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -689,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -792,7 +792,7 @@
"Name": "Backup-AzApiManagement",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.BackupAzureApiManagement",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -800,7 +800,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -1048,7 +1048,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1235,7 +1235,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1302,7 +1302,7 @@
"Name": "Get-AzApiManagement",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.GetAzureApiManagement",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "GetBySubscription",
"OutputTypes": [
@@ -1310,7 +1310,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -1829,7 +1829,7 @@
"Name": "Get-AzApiManagementNetworkStatus",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.GetAzureApiManagementNetworkStatus",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ByInputObject",
"OutputTypes": [
@@ -1837,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementNetworkStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectivityStatus": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[]",
"Location": "System.String",
@@ -1893,7 +1893,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -2133,7 +2133,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -2537,7 +2537,7 @@
"Name": "Get-AzApiManagementSsoToken",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.GetAzureApiManagementSsoToken",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ExpandedParameter",
"OutputTypes": [
@@ -2565,7 +2565,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -2787,7 +2787,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -3119,7 +3119,7 @@
"Name": "New-AzApiManagement",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.NewAzureApiManagement",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -3127,7 +3127,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -3365,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=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.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -3411,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3518,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -3593,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion",
"GenericTypeArguments": [],
@@ -3611,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"GenericTypeArguments": [],
@@ -3629,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate",
"GenericTypeArguments": [],
@@ -3647,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -3702,7 +3702,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3738,7 +3738,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3915,7 +3915,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=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.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -3973,7 +3973,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4086,7 +4086,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -4173,7 +4173,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion",
"GenericTypeArguments": [],
@@ -4197,7 +4197,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"GenericTypeArguments": [],
@@ -4221,7 +4221,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate",
"GenericTypeArguments": [],
@@ -4245,7 +4245,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -4306,7 +4306,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4354,7 +4354,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4421,7 +4421,7 @@
"Name": "New-AzApiManagementCustomHostnameConfiguration",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.NewAzureApiManagementCustomHostnameConfiguration",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "NoChangeCertificate",
"OutputTypes": [
@@ -4429,7 +4429,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"HostnameType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType",
@@ -4507,7 +4507,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4664,7 +4664,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Expiry": "System.DateTime",
"Subject": "System.String",
@@ -4718,7 +4718,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4736,7 +4736,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4817,7 +4817,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4926,7 +4926,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Expiry": "System.DateTime",
"Subject": "System.String",
@@ -4986,7 +4986,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5010,7 +5010,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5102,7 +5102,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5259,7 +5259,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5283,7 +5283,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5375,7 +5375,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5508,7 +5508,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5532,7 +5532,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5600,7 +5600,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5624,7 +5624,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5691,7 +5691,7 @@
"Name": "New-AzApiManagementRegion",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.NewAzureApiManagementRegion",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -5699,7 +5699,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
"VirtualNetwork": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
@@ -5796,7 +5796,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -5939,7 +5939,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -6042,7 +6042,7 @@
"Name": "New-AzApiManagementSslSetting",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.NewAzureApiManagementSslSetting",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -6050,7 +6050,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -6356,7 +6356,7 @@
"Name": "New-AzApiManagementSystemCertificate",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.NewAzureApiManagementSystemCertificate",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -6364,7 +6364,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"EncodedCertificate": "System.String",
@@ -6634,7 +6634,7 @@
"Name": "New-AzApiManagementVirtualNetwork",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.NewAzureApiManagementVirtualNetwork",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -6642,7 +6642,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -6884,7 +6884,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6989,7 +6989,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7056,7 +7056,7 @@
"Name": "Remove-AzApiManagementRegion",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.RemoveAzureApiManagementRegion",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -7064,7 +7064,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -7212,7 +7212,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -7416,7 +7416,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -7636,7 +7636,7 @@
"Name": "Restore-AzApiManagement",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.RestoreAzureApiManagement",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -7644,7 +7644,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -7892,7 +7892,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8079,7 +8079,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8154,7 +8154,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -8302,7 +8302,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -8449,7 +8449,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8485,7 +8485,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8503,7 +8503,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8560,7 +8560,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -8713,7 +8713,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8761,7 +8761,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8785,7 +8785,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8852,7 +8852,7 @@
"Name": "Update-AzApiManagementRegion",
"ClassName": "Microsoft.Azure.Commands.ApiManagement.Commands.UpdateAzureApiManagementRegion",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
@@ -8860,7 +8860,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -9008,7 +9008,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -9173,7 +9173,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9294,7 +9294,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -9387,7 +9387,7 @@
"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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -9564,7 +9564,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9697,7 +9697,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -9939,7 +9939,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"HostnameType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType",
@@ -9990,7 +9990,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Expiry": "System.DateTime",
"Subject": "System.String",
@@ -10056,7 +10056,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10173,7 +10173,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"GenericTypeArguments": [],
@@ -10183,7 +10183,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentity": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementUserAssignedInformation]",
"PrincipalId": "System.String",
@@ -10230,7 +10230,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementUserAssignedInformation]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementUserAssignedInformation]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementUserAssignedInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, 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.ApiManagement.Models.PsApiManagementUserAssignedInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -10243,7 +10243,7 @@
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementUserAssignedInformation": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementUserAssignedInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementUserAssignedInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementUserAssignedInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10285,7 +10285,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10380,7 +10380,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -10437,7 +10437,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate",
"GenericTypeArguments": [],
@@ -10447,7 +10447,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"EncodedCertificate": "System.String",
@@ -10494,7 +10494,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -10550,7 +10550,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10658,7 +10658,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=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.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -10670,7 +10670,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku",
"VirtualNetwork": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
@@ -10788,6 +10788,8 @@
"Properties": {
"OnPremise": "System.Boolean",
"VersionProfiles": "System.Collections.Generic.IList`1[System.String]",
+ "Name": "System.String",
+ "AdTenant": "System.String",
"AzureDataLakeStoreFileSystemEndpointSuffix": "System.String",
"AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String",
"BatchEndpointResourceId": "System.String",
@@ -10797,7 +10799,6 @@
"AzureKeyVaultDnsSuffix": "System.String",
"TrafficManagerDnsSuffix": "System.String",
"SqlDatabaseDnsSuffix": "System.String",
- "StorageEndpointSuffix": "System.String",
"ActiveDirectoryServiceEndpointResourceId": "System.String",
"GraphUrl": "System.String",
"GalleryUrl": "System.String",
@@ -10806,8 +10807,8 @@
"ManagementPortalUrl": "System.String",
"ResourceManagerUrl": "System.String",
"ServiceManagementUrl": "System.String",
- "AdTenant": "System.String",
- "Name": "System.String"
+ "StorageEndpointSuffix": "System.String",
+ "ContainerRegistryEndpointSuffix": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10939,7 +10940,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus",
"GenericTypeArguments": [],
@@ -10949,7 +10950,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=2.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastUpdated": "System.DateTime",
"LastStatusChange": "System.DateTime",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json
index 808d33598fd8..1e7d04db2797 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -263,7 +263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -814,7 +814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -1134,7 +1134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1205,7 +1205,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1386,7 +1386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1602,7 +1602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1799,7 +1799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Version": "System.String",
@@ -1856,7 +1856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"SupportsMultipleExtensions": "System.Nullable`1[System.Boolean]",
@@ -2222,7 +2222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"PublisherName": "System.String",
@@ -2455,7 +2455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -2799,7 +2799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -3509,7 +3509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -3885,7 +3885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -4249,7 +4249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -4991,7 +4991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Extension.AEM",
"Name": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Result": "System.Boolean",
"PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]",
@@ -5382,7 +5382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -5878,7 +5878,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -6218,7 +6218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -6582,7 +6582,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -6696,7 +6696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -6798,7 +6798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -7974,7 +7974,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -8452,7 +8452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -9484,7 +9484,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -9925,7 +9925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -10519,7 +10519,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -10853,7 +10853,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -11175,7 +11175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -11252,7 +11252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -11387,7 +11387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -11546,7 +11546,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -12230,7 +12230,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -12564,7 +12564,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -12886,7 +12886,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -14314,7 +14314,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -14602,7 +14602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"EnableEncryption": "System.Boolean",
@@ -15760,7 +15760,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"MaintenanceWindowStartingHour": "System.Int32",
@@ -16067,7 +16067,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]",
@@ -16396,7 +16396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -16718,7 +16718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -16848,7 +16848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"MaintenanceWindowStartingHour": "System.Int32",
@@ -16904,7 +16904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"EnableEncryption": "System.Boolean",
@@ -16967,7 +16967,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]",
@@ -17180,7 +17180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"MaintenanceWindowStartingHour": "System.Int32",
@@ -17242,7 +17242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"EnableEncryption": "System.Boolean",
@@ -17311,7 +17311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]",
@@ -17450,7 +17450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -17791,7 +17791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -18155,7 +18155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -18693,7 +18693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Version": "System.String",
@@ -18750,7 +18750,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutomaticOSUpgradeProperties": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties",
"OSDiskImage": "Microsoft.Azure.Management.Compute.Models.OSDiskImage",
@@ -19392,7 +19392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Offer": "System.String",
@@ -19624,7 +19624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"PublisherName": "System.String",
@@ -19813,7 +19813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Skus": "System.String",
@@ -20585,7 +20585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSUsage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "Microsoft.Azure.Management.Compute.Models.UsageName",
"StatusCode": "System.Net.HttpStatusCode",
@@ -20775,7 +20775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MemoryInMB": "System.Int32",
"NumberOfCores": "System.Int32",
@@ -21249,7 +21249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -21303,7 +21303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -22165,7 +22165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -22989,7 +22989,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -23043,7 +23043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -24495,7 +24495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -24549,7 +24549,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -25089,7 +25089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -25143,7 +25143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -25953,7 +25953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -26040,7 +26040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -26203,7 +26203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -26394,7 +26394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -26475,7 +26475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -26555,7 +26555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -26969,7 +26969,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -27388,7 +27388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28087,7 +28087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28174,7 +28174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28358,7 +28358,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28545,7 +28545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28756,7 +28756,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28843,7 +28843,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -29024,7 +29024,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -29239,7 +29239,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -29326,7 +29326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -29487,7 +29487,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -29676,7 +29676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -30926,7 +30926,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters",
"Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk",
@@ -32275,7 +32275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32362,7 +32362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32507,7 +32507,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32674,7 +32674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32761,7 +32761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32907,7 +32907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33075,7 +33075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33162,7 +33162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33307,7 +33307,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33474,7 +33474,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33561,7 +33561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33758,7 +33758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33966,7 +33966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -34126,7 +34126,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -34267,7 +34267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -34354,7 +34354,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -34611,7 +34611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -34895,7 +34895,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -35181,7 +35181,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -35446,7 +35446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -35533,7 +35533,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -35910,7 +35910,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -36262,7 +36262,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -36662,7 +36662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -37014,7 +37014,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -37414,7 +37414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -37670,7 +37670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -37883,7 +37883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -37970,7 +37970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -38413,7 +38413,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -38849,7 +38849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -39381,7 +39381,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -39817,7 +39817,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -40349,7 +40349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -40770,7 +40770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -40857,7 +40857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -41054,7 +41054,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -41291,7 +41291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -41378,7 +41378,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -41593,7 +41593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -41825,7 +41825,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -41985,7 +41985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -42126,7 +42126,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -42207,7 +42207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
"MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
@@ -42797,7 +42797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -42878,7 +42878,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
"MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
@@ -43041,7 +43041,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43353,7 +43353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43789,7 +43789,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -43841,7 +43841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -43964,7 +43964,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -44738,7 +44738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -46583,7 +46583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -46637,7 +46637,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -47273,7 +47273,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -47367,7 +47367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -47716,7 +47716,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -48142,7 +48142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -48518,7 +48518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -48870,7 +48870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -49227,7 +49227,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalFilePath": "System.IO.FileInfo",
"DestinationUri": "System.Uri"
@@ -49887,7 +49887,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalFilePath": "System.IO.FileInfo",
"Source": "System.Uri"
@@ -50693,7 +50693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Extension.DSC",
"Name": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -51026,7 +51026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
"MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
@@ -52173,7 +52173,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -52487,7 +52487,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -53791,7 +53791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -53868,7 +53868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -54096,7 +54096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -54378,7 +54378,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -55084,7 +55084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -55778,7 +55778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -57948,7 +57948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -58224,7 +58224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -58770,7 +58770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption",
"Name": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -59161,7 +59161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -59525,7 +59525,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -61589,7 +61589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -61911,7 +61911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -62384,7 +62384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EncryptionSettings": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings",
"EncryptionEnabled": "System.Boolean",
@@ -62664,7 +62664,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OsVolumeEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus",
"DataVolumesEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus",
@@ -62986,7 +62986,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]",
"Settings": "System.Object",
@@ -63756,7 +63756,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection]",
@@ -64124,7 +64124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection]",
@@ -64450,7 +64450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -64565,7 +64565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection]",
@@ -64893,7 +64893,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection]",
@@ -65101,7 +65101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -65168,7 +65168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -65345,7 +65345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -65564,7 +65564,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -66313,7 +66313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -66380,7 +66380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -66503,7 +66503,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -66643,7 +66643,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -66766,7 +66766,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -66869,7 +66869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -67040,7 +67040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -67255,7 +67255,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -67358,7 +67358,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -67529,7 +67529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -67744,7 +67744,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -68151,7 +68151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -68436,7 +68436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -69117,7 +69117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -69232,7 +69232,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -69563,7 +69563,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -69774,7 +69774,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -70187,7 +70187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -71235,7 +71235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -71368,7 +71368,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -71727,7 +71727,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -71942,7 +71942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -72449,7 +72449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -72854,7 +72854,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -72957,7 +72957,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -73128,7 +73128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -73339,7 +73339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -73472,7 +73472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -73943,7 +73943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -74110,7 +74110,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -74395,7 +74395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -74516,7 +74516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -75045,7 +75045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -75400,7 +75400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -77192,7 +77192,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -78302,7 +78302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -78384,7 +78384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -78540,7 +78540,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -78726,7 +78726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -78808,7 +78808,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -78964,7 +78964,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -79150,7 +79150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -79232,7 +79232,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -79388,7 +79388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -79574,7 +79574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -79640,7 +79640,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -79780,7 +79780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -79950,7 +79950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -80016,7 +80016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -80156,7 +80156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -80326,7 +80326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -80446,7 +80446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -80634,7 +80634,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -80864,7 +80864,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -81275,7 +81275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -81579,7 +81579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessSAS": "System.String"
},
@@ -82004,7 +82004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -82349,7 +82349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -82469,7 +82469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -82534,7 +82534,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -82722,7 +82722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -82911,7 +82911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -83338,7 +83338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -84594,7 +84594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -84750,7 +84750,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -85458,7 +85458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -85908,7 +85908,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -86077,7 +86077,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -86595,7 +86595,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -86761,7 +86761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -87305,7 +87305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -89602,7 +89602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -89749,7 +89749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -91036,7 +91036,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -91927,7 +91927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -92078,7 +92078,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -92581,7 +92581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -92756,7 +92756,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -93177,7 +93177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -93724,7 +93724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -93843,7 +93843,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -94304,7 +94304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -94609,7 +94609,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -94742,7 +94742,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -95211,7 +95211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -95376,7 +95376,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -95745,7 +95745,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -95807,7 +95807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -96053,7 +96053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -96365,7 +96365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -96989,7 +96989,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -97051,7 +97051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -97171,7 +97171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -97308,7 +97308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -97426,7 +97426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -97488,7 +97488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -97756,7 +97756,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -98096,7 +98096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -98196,7 +98196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -98364,7 +98364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -98574,7 +98574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -98728,7 +98728,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -99178,7 +99178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -99344,7 +99344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -99755,7 +99755,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -100081,7 +100081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput",
@@ -100911,7 +100911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput",
@@ -101529,7 +101529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -101942,7 +101942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -102075,7 +102075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -102546,7 +102546,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -102713,7 +102713,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -103174,7 +103174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity",
"Capabilities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities]",
@@ -103375,7 +103375,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -104672,7 +104672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -105426,7 +105426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -105499,7 +105499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -105646,7 +105646,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -105823,7 +105823,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -105896,7 +105896,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -106043,7 +106043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -106220,7 +106220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -106293,7 +106293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -106440,7 +106440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -106617,7 +106617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -106675,7 +106675,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -106807,7 +106807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -106969,7 +106969,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -107027,7 +107027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -107159,7 +107159,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -107321,7 +107321,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -107432,7 +107432,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -107611,7 +107611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -107832,7 +107832,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -108243,7 +108243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -108538,7 +108538,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessSAS": "System.String"
},
@@ -108963,7 +108963,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -109308,7 +109308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -109419,7 +109419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -109476,7 +109476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -109655,7 +109655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -109836,7 +109836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -110057,7 +110057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OsType": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes",
"Parameters": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition]",
@@ -110334,7 +110334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -110745,7 +110745,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Policy": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy",
@@ -111028,7 +111028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -111373,7 +111373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -111875,7 +111875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -113114,7 +113114,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
@@ -113304,7 +113304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -113956,7 +113956,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -114186,7 +114186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -114320,7 +114320,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
"GenericTypeArguments": [],
@@ -114392,7 +114392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -114600,7 +114600,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
"GenericTypeArguments": [],
@@ -114740,7 +114740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
"GenericTypeArguments": [],
@@ -114904,7 +114904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
"GenericTypeArguments": [],
@@ -115044,7 +115044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -115127,7 +115127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
"GenericTypeArguments": [],
@@ -115274,7 +115274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -115351,7 +115351,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -115544,7 +115544,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -115779,7 +115779,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -115856,7 +115856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -116153,7 +116153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -116528,7 +116528,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -116605,7 +116605,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -116884,7 +116884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -117235,7 +117235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -117312,7 +117312,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -117575,7 +117575,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -117904,7 +117904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -117981,7 +117981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -118132,7 +118132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -118313,7 +118313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -118390,7 +118390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -118541,7 +118541,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -118722,7 +118722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -118799,7 +118799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -118952,7 +118952,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -119135,7 +119135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -119531,7 +119531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension",
"GenericTypeArguments": [],
@@ -120588,7 +120588,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension",
"GenericTypeArguments": [],
@@ -121824,7 +121824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension",
"GenericTypeArguments": [],
@@ -123929,7 +123929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -124006,7 +124006,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -124159,7 +124159,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -124309,7 +124309,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -124461,7 +124461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -124594,7 +124594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -124671,7 +124671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -124822,7 +124822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -124972,7 +124972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -125122,7 +125122,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -125255,7 +125255,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -125332,7 +125332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -125483,7 +125483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -125633,7 +125633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -125783,7 +125783,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -125916,7 +125916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -125993,7 +125993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -126146,7 +126146,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -126329,7 +126329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -126406,7 +126406,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -126743,7 +126743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -127170,7 +127170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -127247,7 +127247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -127434,7 +127434,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -127663,7 +127663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -127740,7 +127740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -128149,7 +128149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -128672,7 +128672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -128787,7 +128787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -129676,7 +129676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -130929,7 +130929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -131632,7 +131632,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -132085,7 +132085,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WalkPerformed": "System.Nullable`1[System.Boolean]",
"NextPlatformUpdateDomain": "System.Nullable`1[System.Int32]"
@@ -132213,7 +132213,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -132696,7 +132696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -132879,7 +132879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -133410,7 +133410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
"Capacity": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity",
@@ -133687,7 +133687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -134784,7 +134784,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -135171,7 +135171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -135320,7 +135320,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -135875,7 +135875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -136080,7 +136080,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -136467,7 +136467,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -136854,7 +136854,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -136969,7 +136969,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -138170,7 +138170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -139670,7 +139670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -141081,7 +141081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachinePatchAssessmentResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachinePatchAssessmentResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachinePatchAssessmentResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Patches": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties]",
@@ -141197,7 +141197,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -141548,7 +141548,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -141784,7 +141784,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -142129,7 +142129,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -142516,7 +142516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
@@ -142690,7 +142690,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -143327,7 +143327,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -143564,7 +143564,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -143642,7 +143642,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -143987,7 +143987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -144398,7 +144398,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -144476,7 +144476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -144610,7 +144610,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -144753,6 +144753,687 @@
}
],
"AliasList": []
+ },
+ {
+ "VerbName": "Start",
+ "NounName": "AzVmssRollingExtensionUpgrade",
+ "Name": "Start-AzVmssRollingExtensionUpgrade",
+ "ClassName": "Microsoft.Azure.Commands.Compute.Automation.VirtualMachineScaleSetRollingExtensionStartUpgrade",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "DefaultParameter",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
+ "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
+ "StartTime": "System.Nullable`1[System.DateTime]",
+ "EndTime": "System.Nullable`1[System.DateTime]",
+ "Name": "System.String",
+ "Status": "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": false
+ },
+ {
+ "Name": "VMScaleSetName",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "VirtualMachineScaleSet",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
+ "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
+ "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
+ "AutomaticRepairsPolicy": "Microsoft.Azure.Management.Compute.Models.AutomaticRepairsPolicy",
+ "Plan": "Microsoft.Azure.Management.Compute.Models.Plan",
+ "ScaleInPolicy": "Microsoft.Azure.Management.Compute.Models.ScaleInPolicy",
+ "Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
+ "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
+ "HostGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
+ "UpgradePolicy": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy",
+ "Identity": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "SinglePlacementGroup": "System.Nullable`1[System.Boolean]",
+ "ZoneBalance": "System.Nullable`1[System.Boolean]",
+ "DoNotRunExtensionsOnOverprovisionedVMs": "System.Nullable`1[System.Boolean]",
+ "Overprovision": "System.Nullable`1[System.Boolean]",
+ "PlatformFaultDomainCount": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "Id": "System.String",
+ "UniqueId": "System.String",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "FullyQualifiedDomainName": "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": 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": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DefaultParameter",
+ "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": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VMScaleSetName",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": true
+ },
+ {
+ "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.4.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": "ByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "VirtualMachineScaleSet",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
+ "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
+ "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
+ "AutomaticRepairsPolicy": "Microsoft.Azure.Management.Compute.Models.AutomaticRepairsPolicy",
+ "Plan": "Microsoft.Azure.Management.Compute.Models.Plan",
+ "ScaleInPolicy": "Microsoft.Azure.Management.Compute.Models.ScaleInPolicy",
+ "Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
+ "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
+ "HostGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
+ "UpgradePolicy": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy",
+ "Identity": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "SinglePlacementGroup": "System.Nullable`1[System.Boolean]",
+ "ZoneBalance": "System.Nullable`1[System.Boolean]",
+ "DoNotRunExtensionsOnOverprovisionedVMs": "System.Nullable`1[System.Boolean]",
+ "Overprovision": "System.Nullable`1[System.Boolean]",
+ "PlatformFaultDomainCount": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "Id": "System.String",
+ "UniqueId": "System.String",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "FullyQualifiedDomainName": "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": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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.4.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": "ByResourceId",
+ "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": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": []
}
],
"TypeDictionary": {
@@ -145437,7 +146118,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -145449,7 +146130,7 @@
"Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult": {
"Namespace": "Microsoft.Azure.Commands.Compute.Extension.AEM",
"Name": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Result": "System.Boolean",
"PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]",
@@ -145527,7 +146208,7 @@
"Microsoft.Azure.Commands.Compute.Models.DisplayHintType": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -150008,7 +150689,7 @@
"Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile",
"BillingProfile": "Microsoft.Azure.Management.Compute.Models.BillingProfile",
@@ -150062,7 +150743,7 @@
"Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension]"
},
@@ -150106,7 +150787,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -150118,7 +150799,7 @@
"Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProvisionAfterExtensions": "System.Collections.Generic.IList`1[System.String]",
"AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]",
@@ -151962,7 +152643,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -151974,7 +152655,7 @@
"Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CredentialName": "System.String",
"KeyVaultName": "System.String"
@@ -152605,7 +153286,7 @@
"Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings": {
"Namespace": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption",
"Name": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVaultURL": "System.String",
"KeyEncryptionKeyURL": "System.String",
@@ -152726,7 +153407,7 @@
"Microsoft.Azure.Commands.Compute.Models.EncryptionStatus": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -153865,7 +154546,7 @@
"Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Hosts": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName]"
},
@@ -158145,7 +158826,7 @@
"Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=4.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters",
"Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry.dll.json
index 7826da50ccd2..c36692f8acec 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry.dll.json
@@ -361,7 +361,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -931,7 +931,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryCredential, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryCredential, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Username": "System.String",
"Password": "System.String",
@@ -1031,7 +1031,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1257,7 +1257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1499,7 +1499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"StatusTimestamp": "System.Nullable`1[System.DateTime]",
@@ -1624,7 +1624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1902,7 +1902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -2117,7 +2117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -2359,7 +2359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -2485,7 +2485,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -2805,7 +2805,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3068,7 +3068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3382,7 +3382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhookEvent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhookEvent, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhookEvent, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EventRequestMessage": "Microsoft.Azure.Commands.ContainerRegistry.PSEventRequestMessage",
"EventResponseMessage": "Microsoft.Azure.Management.ContainerRegistry.Models.EventResponseMessage",
@@ -3498,7 +3498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3741,7 +3741,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3978,7 +3978,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -4422,7 +4422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"StatusTimestamp": "System.Nullable`1[System.DateTime]",
@@ -4526,7 +4526,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -4890,7 +4890,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -5369,7 +5369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -5538,7 +5538,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -6339,7 +6339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -7026,7 +7026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -7294,7 +7294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -7688,7 +7688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"StatusTimestamp": "System.Nullable`1[System.DateTime]",
@@ -7977,7 +7977,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"StatusTimestamp": "System.Nullable`1[System.DateTime]",
@@ -8363,7 +8363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -8651,7 +8651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -9173,7 +9173,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryEventInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryEventInfo, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryEventInfo, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -9290,7 +9290,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -9536,7 +9536,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -9773,7 +9773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -9963,7 +9963,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -10256,7 +10256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -10572,7 +10572,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -10888,7 +10888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -11178,7 +11178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -11468,7 +11468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -11706,7 +11706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -11970,7 +11970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -12165,7 +12165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryCredential, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryCredential, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Username": "System.String",
"Password": "System.String",
@@ -12265,7 +12265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -12709,7 +12709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -13287,7 +13287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -13456,7 +13456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -14153,7 +14153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -14670,7 +14670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSRegistryUsage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSRegistryUsage, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSRegistryUsage, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Limit": "System.Nullable`1[System.Int64]",
"CurrentValue": "System.Nullable`1[System.Int64]",
@@ -14766,8 +14766,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "RegistryName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "RegistryName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -14843,12 +14845,14 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "RegistryName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "RegistryName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -14867,7 +14871,7 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -16322,7 +16326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "System.String",
"NetworkRuleType": "System.String"
@@ -16786,7 +16790,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -16914,7 +16918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule",
"GenericTypeArguments": [],
@@ -16932,7 +16936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -17104,7 +17108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule",
"GenericTypeArguments": [],
@@ -17199,7 +17203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -17311,7 +17315,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule",
"GenericTypeArguments": [],
@@ -17379,7 +17383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule",
"GenericTypeArguments": [],
@@ -17776,7 +17780,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
@@ -17874,7 +17878,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -17886,7 +17890,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "System.String",
"NetworkRuleType": "System.String",
@@ -18035,7 +18039,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18047,7 +18051,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "System.String",
"NetworkRuleType": "System.String",
@@ -18470,7 +18474,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.PSEventRequestMessage": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSEventRequestMessage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSEventRequestMessage, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSEventRequestMessage, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "Microsoft.Azure.Commands.ContainerRegistry.PSEventContent",
"Headers": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -18523,7 +18527,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.PSEventContent": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSEventContent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSEventContent, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSEventContent, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ContainerRegistry.PSRequest",
"Source": "Microsoft.Azure.Commands.ContainerRegistry.PSSource",
@@ -18578,7 +18582,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.PSRequest": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSRequest, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSRequest, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Addr": "System.String",
@@ -18631,7 +18635,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.PSSource": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSSource, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSSource, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Addr": "System.String",
"InstanceID": "System.String"
@@ -18681,7 +18685,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.PSTarget": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.PSTarget",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSTarget, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSTarget, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Size": "System.Nullable`1[System.Int64]",
"Length": "System.Nullable`1[System.Int64]",
@@ -18820,7 +18824,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "System.String",
"NetworkRuleType": "System.String"
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json
index a8ee6e0e08fc..009da0c3dbd9 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutputDatasets": "System.Collections.Generic.IList`1[System.String]",
"InputDatasets": "System.Collections.Generic.IList`1[System.String]",
@@ -103,7 +103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -472,7 +472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1627,7 +1627,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1938,7 +1938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -2486,7 +2486,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -2747,7 +2747,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -2964,7 +2964,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Availability": "Microsoft.Azure.Management.DataFactories.Common.Models.Availability",
"Policy": "Microsoft.Azure.Management.DataFactories.Common.Models.Policy",
@@ -3035,7 +3035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3196,7 +3196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3529,7 +3529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Availability": "Microsoft.Azure.Management.DataFactories.Common.Models.Availability",
"Policy": "Microsoft.Azure.Management.DataFactories.Common.Models.Policy",
@@ -3600,7 +3600,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3797,7 +3797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -4311,7 +4311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -4568,7 +4568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -4885,7 +4885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"DataSliceEnd": "System.DateTime",
@@ -4964,7 +4964,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -5143,7 +5143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -5548,7 +5548,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Start": "System.DateTime",
"End": "System.DateTime",
@@ -5638,7 +5638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -5933,7 +5933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -6294,7 +6294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SasUri": "System.String",
"StorageAccountName": "System.String",
@@ -6361,7 +6361,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -6558,7 +6558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -7117,7 +7117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -7469,7 +7469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -7963,7 +7963,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -8265,7 +8265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -8940,7 +8940,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Key1": "System.String",
"Key2": "System.String"
@@ -9005,7 +9005,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -9168,7 +9168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -9501,7 +9501,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"RegisterTime": "System.Nullable`1[System.DateTime]",
@@ -9579,7 +9579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -9740,7 +9740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -10073,7 +10073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Key1": "System.String",
"Key2": "System.String"
@@ -10138,7 +10138,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -10322,7 +10322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -10736,7 +10736,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"RegisterTime": "System.Nullable`1[System.DateTime]",
@@ -10814,7 +10814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -10993,7 +10993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -11417,7 +11417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -11596,7 +11596,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -12001,7 +12001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"RegisterTime": "System.Nullable`1[System.DateTime]",
@@ -12079,7 +12079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -12258,7 +12258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -12663,7 +12663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.HubBaseProperties",
"HubName": "System.String",
@@ -12748,7 +12748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -12959,7 +12959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -13224,7 +13224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.HubBaseProperties",
"HubName": "System.String",
@@ -13345,7 +13345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -13604,7 +13604,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -14022,7 +14022,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -14259,7 +14259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -14576,7 +14576,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.LinkedServiceProperties",
"LinkedServiceName": "System.String",
@@ -14643,7 +14643,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -14804,7 +14804,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15137,7 +15137,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.LinkedServiceProperties",
"LinkedServiceName": "System.String",
@@ -15204,7 +15204,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15401,7 +15401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15915,7 +15915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -16172,7 +16172,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -16489,7 +16489,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.PipelineProperties",
"PipelineName": "System.String",
@@ -16574,7 +16574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -16785,7 +16785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -17050,7 +17050,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.PipelineProperties",
"PipelineName": "System.String",
@@ -17135,7 +17135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -17430,7 +17430,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -17848,7 +17848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -18085,7 +18085,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -18441,7 +18441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -18654,7 +18654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -18962,7 +18962,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -19343,7 +19343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -19843,7 +19843,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -20056,7 +20056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactories.Models",
"Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json
index e54106595095..56e62af8c061 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -372,7 +372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -639,7 +639,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -954,7 +954,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -1088,7 +1088,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -3133,7 +3133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -3356,7 +3356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -3747,7 +3747,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -4218,7 +4218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -4331,7 +4331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -4598,7 +4598,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -5021,7 +5021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -5386,7 +5386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -5751,7 +5751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CoreCount": "System.Nullable`1[System.Int32]",
"TimeToLiveInMinutes": "System.Nullable`1[System.Int32]",
@@ -5839,7 +5839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -6056,7 +6056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -6323,7 +6323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Data": "System.String",
"Status": "System.String"
@@ -6535,7 +6535,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -7096,7 +7096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -7559,7 +7559,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SessionId": "System.String",
"Status": "System.String"
@@ -7679,7 +7679,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -7996,7 +7996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -8443,7 +8443,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -8780,7 +8780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -9191,7 +9191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow",
"Name": "System.String",
@@ -9307,7 +9307,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -9600,7 +9600,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -9897,7 +9897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow",
"Name": "System.String",
@@ -10269,7 +10269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow",
"Name": "System.String",
@@ -10659,7 +10659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow",
"Name": "System.String",
@@ -11251,7 +11251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset",
"Structure": "System.Object",
@@ -11366,7 +11366,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -11659,7 +11659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -11941,7 +11941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset",
"Structure": "System.Object",
@@ -12270,7 +12270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset",
"Structure": "System.Object",
@@ -12587,7 +12587,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset",
"Structure": "System.Object",
@@ -13178,7 +13178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -13245,7 +13245,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressCustomSetup": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]",
"DataFlowTimeToLive": "System.Nullable`1[System.Int32]",
@@ -13334,7 +13334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -13401,7 +13401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizationType": "System.String",
"Name": "System.String",
@@ -13567,7 +13567,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -13980,7 +13980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -14131,7 +14131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthKey1": "System.String",
"AuthKey2": "System.String"
@@ -14270,7 +14270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -14567,7 +14567,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -14738,7 +14738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData]",
"IntegrationRuntimeName": "System.String",
@@ -14888,7 +14888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -15185,7 +15185,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -15356,7 +15356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]",
"ResourceGroupName": "System.String",
@@ -15432,7 +15432,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"IsActiveDispatcher": "System.Nullable`1[System.Boolean]",
@@ -15641,7 +15641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -16124,7 +16124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -16394,7 +16394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -16691,7 +16691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -16862,7 +16862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthKey1": "System.String",
"AuthKey2": "System.String"
@@ -17040,7 +17040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -17534,7 +17534,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -17843,7 +17843,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -18328,7 +18328,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -18632,7 +18632,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -19115,7 +19115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -19290,7 +19290,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -19417,7 +19417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -21779,7 +21779,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -22494,7 +22494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -22839,7 +22839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastOperation": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult",
"ExpressCustomSetup": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]",
@@ -23034,7 +23034,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -23447,7 +23447,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -23711,7 +23711,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -24124,7 +24124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -24386,7 +24386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -24797,7 +24797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -24948,7 +24948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Links": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime]",
@@ -25161,7 +25161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -25661,7 +25661,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -25841,7 +25841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"IsActiveDispatcher": "System.Nullable`1[System.Boolean]",
@@ -26050,7 +26050,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -26533,7 +26533,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -26708,7 +26708,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService",
"Name": "System.String",
@@ -26822,7 +26822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -27115,7 +27115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -27433,7 +27433,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -27798,7 +27798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -28060,7 +28060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService",
"Name": "System.String",
@@ -28388,7 +28388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService",
"Name": "System.String",
@@ -28704,7 +28704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService",
"Name": "System.String",
@@ -29294,7 +29294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -29409,7 +29409,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -29702,7 +29702,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -29984,7 +29984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -30313,7 +30313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -30630,7 +30630,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -31221,7 +31221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
"ActivityRunStart": "System.Nullable`1[System.DateTime]",
@@ -31397,7 +31397,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -31666,7 +31666,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -32053,7 +32053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InvokedBy": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy",
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -32137,7 +32137,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -32358,7 +32358,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -32506,7 +32506,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -33033,7 +33033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
"TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -33170,7 +33170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -33393,7 +33393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -33734,7 +33734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -33811,7 +33811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -34088,7 +34088,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -34334,7 +34334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -35103,7 +35103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -35180,7 +35180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
"TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -35314,7 +35314,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -35463,7 +35463,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
"TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -35829,7 +35829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -36075,7 +36075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InvokedBy": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy",
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -36194,7 +36194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -36343,7 +36343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InvokedBy": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy",
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -36664,7 +36664,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -36906,7 +36906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
"TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -37040,7 +37040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -37189,7 +37189,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
"TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -37555,7 +37555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -37778,7 +37778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TriggerName": "System.String",
"Status": "System.String"
@@ -37862,7 +37862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -38149,7 +38149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -38394,7 +38394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -38509,7 +38509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -38802,7 +38802,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -39045,7 +39045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TriggerName": "System.String",
"Status": "System.String"
@@ -39129,7 +39129,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -39416,7 +39416,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -39700,7 +39700,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -40029,7 +40029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -40385,7 +40385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -40756,7 +40756,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -41145,7 +41145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -41736,7 +41736,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -41833,7 +41833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -42162,7 +42162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -42479,7 +42479,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -42576,7 +42576,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -42905,7 +42905,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.11.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis.dll.json
index 866beacf9757..07a2efe962ea 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis.dll.json
@@ -6,7 +6,7 @@
"Name": "Get-AzHealthcareApisService",
"ClassName": "Microsoft.Azure.Commands.HealthcareApis.Commands.GetAzureRmHealthcareApisService",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ListParameterSet",
"OutputTypes": [
@@ -14,30 +14,33 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HealthcareApis.Models",
"Name": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"AccessPolicies": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection]",
"CorsHeaders": "System.Collections.Generic.IList`1[System.String]",
"CorsMethods": "System.Collections.Generic.IList`1[System.String]",
"CorsOrigins": "System.Collections.Generic.IList`1[System.String]",
- "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsAllowCredentials": "System.Nullable`1[System.Boolean]",
+ "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsMaxAge": "System.Nullable`1[System.Int32]",
"CosmosDbOfferThroughput": "System.Nullable`1[System.Int32]",
+ "IdentityTenantId": "System.String",
+ "IdentityPrincipalId": "System.String",
"IdentityType": "System.String",
"ResourceType": "System.String",
+ "Audience": "System.String",
"ResourceGroupName": "System.String",
- "Name": "System.String",
- "Etag": "System.String",
"Kind": "System.String",
- "Id": "System.String",
- "IdentityPrincipalId": "System.String",
- "ExportStorageAccountName": "System.String",
- "Authority": "System.String",
- "Audience": "System.String",
"Location": "System.String",
- "IdentityTenantId": "System.String"
+ "Authority": "System.String",
+ "PublicNetworkAccess": "System.String",
+ "Etag": "System.String",
+ "ExportStorageAccountName": "System.String",
+ "CosmosDbKeyVaultKeyUri": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -481,30 +484,33 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HealthcareApis.Models",
"Name": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"AccessPolicies": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection]",
"CorsHeaders": "System.Collections.Generic.IList`1[System.String]",
"CorsMethods": "System.Collections.Generic.IList`1[System.String]",
"CorsOrigins": "System.Collections.Generic.IList`1[System.String]",
- "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsAllowCredentials": "System.Nullable`1[System.Boolean]",
+ "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsMaxAge": "System.Nullable`1[System.Int32]",
"CosmosDbOfferThroughput": "System.Nullable`1[System.Int32]",
+ "IdentityTenantId": "System.String",
+ "IdentityPrincipalId": "System.String",
"IdentityType": "System.String",
"ResourceType": "System.String",
+ "Audience": "System.String",
"ResourceGroupName": "System.String",
- "Name": "System.String",
- "Etag": "System.String",
"Kind": "System.String",
- "Id": "System.String",
- "IdentityPrincipalId": "System.String",
- "ExportStorageAccountName": "System.String",
- "Authority": "System.String",
- "Audience": "System.String",
"Location": "System.String",
- "IdentityTenantId": "System.String"
+ "Authority": "System.String",
+ "PublicNetworkAccess": "System.String",
+ "Etag": "System.String",
+ "ExportStorageAccountName": "System.String",
+ "CosmosDbKeyVaultKeyUri": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -660,7 +666,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -780,6 +786,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "CosmosKeyVaultKeyUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "CosmosOfferThroughput",
"AliasList": [],
@@ -824,7 +848,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -842,7 +866,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -898,7 +922,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -910,6 +934,27 @@
"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": [
+ "Enabled",
+ "Disabled"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -1075,7 +1120,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1236,6 +1281,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "CosmosKeyVaultKeyUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "CosmosOfferThroughput",
@@ -1293,7 +1362,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1317,7 +1386,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1391,7 +1460,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1408,6 +1477,33 @@
"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": [
+ "Enabled",
+ "Disabled"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -1524,30 +1620,33 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HealthcareApis.Models",
"Name": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"AccessPolicies": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection]",
"CorsHeaders": "System.Collections.Generic.IList`1[System.String]",
"CorsMethods": "System.Collections.Generic.IList`1[System.String]",
"CorsOrigins": "System.Collections.Generic.IList`1[System.String]",
- "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsAllowCredentials": "System.Nullable`1[System.Boolean]",
+ "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsMaxAge": "System.Nullable`1[System.Int32]",
"CosmosDbOfferThroughput": "System.Nullable`1[System.Int32]",
+ "IdentityTenantId": "System.String",
+ "IdentityPrincipalId": "System.String",
"IdentityType": "System.String",
"ResourceType": "System.String",
+ "Audience": "System.String",
"ResourceGroupName": "System.String",
- "Name": "System.String",
- "Etag": "System.String",
"Kind": "System.String",
- "Id": "System.String",
- "IdentityPrincipalId": "System.String",
- "ExportStorageAccountName": "System.String",
- "Authority": "System.String",
- "Audience": "System.String",
"Location": "System.String",
- "IdentityTenantId": "System.String"
+ "Authority": "System.String",
+ "PublicNetworkAccess": "System.String",
+ "Etag": "System.String",
+ "ExportStorageAccountName": "System.String",
+ "CosmosDbKeyVaultKeyUri": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1630,7 +1729,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1648,7 +1747,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1756,7 +1855,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1780,7 +1879,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1848,30 +1947,33 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HealthcareApis.Models",
"Name": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"AccessPolicies": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection]",
"CorsHeaders": "System.Collections.Generic.IList`1[System.String]",
"CorsMethods": "System.Collections.Generic.IList`1[System.String]",
"CorsOrigins": "System.Collections.Generic.IList`1[System.String]",
- "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsAllowCredentials": "System.Nullable`1[System.Boolean]",
+ "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsMaxAge": "System.Nullable`1[System.Int32]",
"CosmosDbOfferThroughput": "System.Nullable`1[System.Int32]",
+ "IdentityTenantId": "System.String",
+ "IdentityPrincipalId": "System.String",
"IdentityType": "System.String",
"ResourceType": "System.String",
+ "Audience": "System.String",
"ResourceGroupName": "System.String",
- "Name": "System.String",
- "Etag": "System.String",
"Kind": "System.String",
- "Id": "System.String",
- "IdentityPrincipalId": "System.String",
- "ExportStorageAccountName": "System.String",
- "Authority": "System.String",
- "Audience": "System.String",
"Location": "System.String",
- "IdentityTenantId": "System.String"
+ "Authority": "System.String",
+ "PublicNetworkAccess": "System.String",
+ "Etag": "System.String",
+ "ExportStorageAccountName": "System.String",
+ "CosmosDbKeyVaultKeyUri": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1942,7 +2044,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1966,7 +2068,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2058,7 +2160,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2082,7 +2184,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2150,7 +2252,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2174,7 +2276,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2249,30 +2351,33 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HealthcareApis.Models",
"Name": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"AccessPolicies": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection]",
"CorsHeaders": "System.Collections.Generic.IList`1[System.String]",
"CorsMethods": "System.Collections.Generic.IList`1[System.String]",
"CorsOrigins": "System.Collections.Generic.IList`1[System.String]",
- "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsAllowCredentials": "System.Nullable`1[System.Boolean]",
+ "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsMaxAge": "System.Nullable`1[System.Int32]",
"CosmosDbOfferThroughput": "System.Nullable`1[System.Int32]",
+ "IdentityTenantId": "System.String",
+ "IdentityPrincipalId": "System.String",
"IdentityType": "System.String",
"ResourceType": "System.String",
+ "Audience": "System.String",
"ResourceGroupName": "System.String",
- "Name": "System.String",
- "Etag": "System.String",
"Kind": "System.String",
- "Id": "System.String",
- "IdentityPrincipalId": "System.String",
- "ExportStorageAccountName": "System.String",
- "Authority": "System.String",
- "Audience": "System.String",
"Location": "System.String",
- "IdentityTenantId": "System.String"
+ "Authority": "System.String",
+ "PublicNetworkAccess": "System.String",
+ "Etag": "System.String",
+ "ExportStorageAccountName": "System.String",
+ "CosmosDbKeyVaultKeyUri": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2388,6 +2493,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "CosmosKeyVaultKeyUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Authority",
"AliasList": [],
@@ -2430,7 +2553,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2448,7 +2571,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2540,7 +2663,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2558,7 +2681,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2612,7 +2735,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2630,7 +2753,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2668,30 +2791,33 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HealthcareApis.Models",
"Name": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"AccessPolicies": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection]",
"CorsHeaders": "System.Collections.Generic.IList`1[System.String]",
"CorsMethods": "System.Collections.Generic.IList`1[System.String]",
"CorsOrigins": "System.Collections.Generic.IList`1[System.String]",
- "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsAllowCredentials": "System.Nullable`1[System.Boolean]",
+ "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsMaxAge": "System.Nullable`1[System.Int32]",
"CosmosDbOfferThroughput": "System.Nullable`1[System.Int32]",
+ "IdentityTenantId": "System.String",
+ "IdentityPrincipalId": "System.String",
"IdentityType": "System.String",
"ResourceType": "System.String",
+ "Audience": "System.String",
"ResourceGroupName": "System.String",
- "Name": "System.String",
- "Etag": "System.String",
"Kind": "System.String",
- "Id": "System.String",
- "IdentityPrincipalId": "System.String",
- "ExportStorageAccountName": "System.String",
- "Authority": "System.String",
- "Audience": "System.String",
"Location": "System.String",
- "IdentityTenantId": "System.String"
+ "Authority": "System.String",
+ "PublicNetworkAccess": "System.String",
+ "Etag": "System.String",
+ "ExportStorageAccountName": "System.String",
+ "CosmosDbKeyVaultKeyUri": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2774,7 +2900,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2786,6 +2912,27 @@
"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": [
+ "Enabled",
+ "Disabled"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -2898,6 +3045,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "CosmosKeyVaultKeyUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Authority",
@@ -2953,7 +3124,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2977,7 +3148,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3099,7 +3270,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3123,7 +3294,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3195,7 +3366,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3219,7 +3390,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3262,6 +3433,33 @@
"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": [
+ "Enabled",
+ "Disabled"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -3269,7 +3467,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3358,7 +3556,7 @@
},
{
"ParameterMetadata": {
- "Name": "Authority",
+ "Name": "CosmosKeyVaultKeyUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -3382,7 +3580,7 @@
},
{
"ParameterMetadata": {
- "Name": "Audience",
+ "Name": "Authority",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -3406,12 +3604,12 @@
},
{
"ParameterMetadata": {
- "Name": "EnableSmartProxy",
+ "Name": "Audience",
"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": [],
@@ -3430,12 +3628,36 @@
},
{
"ParameterMetadata": {
- "Name": "DisableSmartProxy",
+ "Name": "EnableSmartProxy",
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DisableSmartProxy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3557,7 +3779,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3581,7 +3803,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3653,7 +3875,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3677,7 +3899,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3744,6 +3966,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "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": [
+ "Enabled",
+ "Disabled"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -3751,7 +4000,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3819,30 +4068,33 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HealthcareApis.Models",
"Name": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"AccessPolicies": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection]",
"CorsHeaders": "System.Collections.Generic.IList`1[System.String]",
"CorsMethods": "System.Collections.Generic.IList`1[System.String]",
"CorsOrigins": "System.Collections.Generic.IList`1[System.String]",
- "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsAllowCredentials": "System.Nullable`1[System.Boolean]",
+ "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsMaxAge": "System.Nullable`1[System.Int32]",
"CosmosDbOfferThroughput": "System.Nullable`1[System.Int32]",
+ "IdentityTenantId": "System.String",
+ "IdentityPrincipalId": "System.String",
"IdentityType": "System.String",
"ResourceType": "System.String",
+ "Audience": "System.String",
"ResourceGroupName": "System.String",
- "Name": "System.String",
- "Etag": "System.String",
"Kind": "System.String",
- "Id": "System.String",
- "IdentityPrincipalId": "System.String",
- "ExportStorageAccountName": "System.String",
- "Authority": "System.String",
- "Audience": "System.String",
"Location": "System.String",
- "IdentityTenantId": "System.String"
+ "Authority": "System.String",
+ "PublicNetworkAccess": "System.String",
+ "Etag": "System.String",
+ "ExportStorageAccountName": "System.String",
+ "CosmosDbKeyVaultKeyUri": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3913,7 +4165,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3981,7 +4233,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4200,7 +4452,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.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.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -4212,7 +4464,7 @@
"Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry": {
"Namespace": "Microsoft.Azure.Commands.HealthcareApis.Models",
"Name": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ObjectId": "System.String"
},
@@ -4268,6 +4520,230 @@
"Methods": [],
"Constructors": []
},
+ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection, Microsoft.Azure.Management.HealthcareApis, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection": {
+ "Namespace": "Microsoft.Azure.Management.HealthcareApis.Models",
+ "Name": "Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection, Microsoft.Azure.Management.HealthcareApis, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "PrivateEndpoint": "Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpoint",
+ "PrivateLinkServiceConnectionState": "Microsoft.Azure.Management.HealthcareApis.Models.PrivateLinkServiceConnectionState",
+ "ProvisioningState": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String"
+ },
+ "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": "privateLinkServiceConnectionState",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "id",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "type",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "privateEndpoint",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provisioningState",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpoint": {
+ "Namespace": "Microsoft.Azure.Management.HealthcareApis.Models",
+ "Name": "Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpoint",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpoint, Microsoft.Azure.Management.HealthcareApis, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "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": "id",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "Microsoft.Azure.Management.HealthcareApis.Models.PrivateLinkServiceConnectionState": {
+ "Namespace": "Microsoft.Azure.Management.HealthcareApis.Models",
+ "Name": "Microsoft.Azure.Management.HealthcareApis.Models.PrivateLinkServiceConnectionState",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.HealthcareApis.Models.PrivateLinkServiceConnectionState, Microsoft.Azure.Management.HealthcareApis, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Status": "System.String",
+ "Description": "System.String",
+ "ActionsRequired": "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": "status",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "description",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "actionsRequired",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "System.Void": {
+ "Namespace": "System",
+ "Name": "System.Void",
+ "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
"System.Collections.Generic.IList`1[System.String]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[System.String]",
@@ -4307,30 +4783,33 @@
"Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService": {
"Namespace": "Microsoft.Azure.Commands.HealthcareApis.Models",
"Name": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisService, Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"AccessPolicies": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisFhirServiceAccessPolicyEntry]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.HealthcareApis.Models.PrivateEndpointConnection]",
"CorsHeaders": "System.Collections.Generic.IList`1[System.String]",
"CorsMethods": "System.Collections.Generic.IList`1[System.String]",
"CorsOrigins": "System.Collections.Generic.IList`1[System.String]",
- "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsAllowCredentials": "System.Nullable`1[System.Boolean]",
+ "SmartProxyEnabled": "System.Nullable`1[System.Boolean]",
"CorsMaxAge": "System.Nullable`1[System.Int32]",
"CosmosDbOfferThroughput": "System.Nullable`1[System.Int32]",
+ "IdentityTenantId": "System.String",
+ "IdentityPrincipalId": "System.String",
"IdentityType": "System.String",
"ResourceType": "System.String",
+ "Audience": "System.String",
"ResourceGroupName": "System.String",
- "Name": "System.String",
- "Etag": "System.String",
"Kind": "System.String",
- "Id": "System.String",
- "IdentityPrincipalId": "System.String",
- "ExportStorageAccountName": "System.String",
- "Authority": "System.String",
- "Audience": "System.String",
"Location": "System.String",
- "IdentityTenantId": "System.String"
+ "Authority": "System.String",
+ "PublicNetworkAccess": "System.String",
+ "Etag": "System.String",
+ "ExportStorageAccountName": "System.String",
+ "CosmosDbKeyVaultKeyUri": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4423,6 +4902,8 @@
"Properties": {
"OnPremise": "System.Boolean",
"VersionProfiles": "System.Collections.Generic.IList`1[System.String]",
+ "Name": "System.String",
+ "AdTenant": "System.String",
"AzureDataLakeStoreFileSystemEndpointSuffix": "System.String",
"AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String",
"BatchEndpointResourceId": "System.String",
@@ -4432,7 +4913,6 @@
"AzureKeyVaultDnsSuffix": "System.String",
"TrafficManagerDnsSuffix": "System.String",
"SqlDatabaseDnsSuffix": "System.String",
- "StorageEndpointSuffix": "System.String",
"ActiveDirectoryServiceEndpointResourceId": "System.String",
"GraphUrl": "System.String",
"GalleryUrl": "System.String",
@@ -4441,8 +4921,8 @@
"ManagementPortalUrl": "System.String",
"ResourceManagerUrl": "System.String",
"ServiceManagementUrl": "System.String",
- "AdTenant": "System.String",
- "Name": "System.String"
+ "StorageEndpointSuffix": "System.String",
+ "ContainerRegistryEndpointSuffix": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4503,16 +4983,6 @@
"Methods": [],
"Constructors": []
},
- "System.Void": {
- "Namespace": "System",
- "Name": "System.Void",
- "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
"System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
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 ffc4b00f51bc..faa4ef2f5077 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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2062,7 +2062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfiguration, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfiguration, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent",
"SystemMetrics": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics",
@@ -2126,7 +2126,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -2387,7 +2387,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -3284,7 +3284,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfiguration, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfiguration, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent",
"SystemMetrics": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics",
@@ -3344,7 +3344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurations[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurations[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurations[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurations",
"GenericTypeArguments": [],
@@ -3363,7 +3363,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -3534,7 +3534,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -3951,7 +3951,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricsResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricsResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricsResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Result": "System.Collections.Generic.IList`1[System.String]",
"Criteria": "System.String",
@@ -4006,7 +4006,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -4156,7 +4156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4298,7 +4298,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -4412,7 +4412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4637,7 +4637,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4886,7 +4886,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5087,7 +5087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5268,7 +5268,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -5457,7 +5457,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -5970,7 +5970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfiguration, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfiguration, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent",
"SystemMetrics": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics",
@@ -6034,7 +6034,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -6295,7 +6295,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -7168,7 +7168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent",
"SystemMetrics": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics",
@@ -7232,7 +7232,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -7493,7 +7493,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -8390,7 +8390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent",
"SystemMetrics": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics",
@@ -8450,7 +8450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployments[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployments[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployments[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployments",
"GenericTypeArguments": [],
@@ -8469,7 +8469,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -8640,7 +8640,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -9057,7 +9057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricsResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricsResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricsResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Result": "System.Collections.Generic.IList`1[System.String]",
"Criteria": "System.String",
@@ -9112,7 +9112,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -9262,7 +9262,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9404,7 +9404,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -9518,7 +9518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9743,7 +9743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9992,7 +9992,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10193,7 +10193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetricType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10374,7 +10374,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -10563,7 +10563,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -11076,7 +11076,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent",
"SystemMetrics": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics",
@@ -11140,7 +11140,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -11401,7 +11401,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -12298,7 +12298,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -12363,7 +12363,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -12495,7 +12495,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12598,7 +12598,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12830,7 +12830,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -12968,7 +12968,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13077,7 +13077,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13422,7 +13422,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13531,7 +13531,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13852,7 +13852,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13961,7 +13961,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14186,7 +14186,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14295,7 +14295,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14527,7 +14527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]",
"DeviceId": "System.String"
@@ -14581,7 +14581,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -14788,7 +14788,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -15351,7 +15351,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -15412,7 +15412,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices",
"GenericTypeArguments": [],
@@ -15431,7 +15431,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -15602,7 +15602,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -15995,7 +15995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]",
"DeviceId": "System.String"
@@ -16045,7 +16045,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren",
"GenericTypeArguments": [],
@@ -16064,7 +16064,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -16235,7 +16235,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -16630,7 +16630,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionString, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DeviceId": "System.String",
"ConnectionString": "System.String"
@@ -16684,7 +16684,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -16816,7 +16816,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16958,7 +16958,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -17048,7 +17048,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17273,7 +17273,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17474,7 +17474,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17680,7 +17680,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -17745,7 +17745,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -17916,7 +17916,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -18309,7 +18309,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTwin",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTwin, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTwin, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthenticationType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -18375,7 +18375,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -18546,7 +18546,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -18939,7 +18939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceMethodResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceMethodResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceMethodResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.Int32",
"Payload": "System.String"
@@ -18993,7 +18993,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -19236,7 +19236,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -20032,7 +20032,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -20221,7 +20221,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -20729,7 +20729,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -20936,7 +20936,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -21518,7 +21518,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -21668,7 +21668,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21828,7 +21828,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -21942,7 +21942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22215,7 +22215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22464,7 +22464,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22689,7 +22689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTransportType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22875,7 +22875,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -22940,7 +22940,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -23072,7 +23072,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23175,7 +23175,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23353,7 +23353,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -23443,7 +23443,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23596,7 +23596,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -23686,7 +23686,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23863,7 +23863,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -24093,7 +24093,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24318,7 +24318,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24683,7 +24683,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24884,7 +24884,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25228,7 +25228,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -25293,7 +25293,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -25500,7 +25500,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -26061,7 +26061,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTwin",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTwin, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTwin, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthenticationType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -26127,7 +26127,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -26352,7 +26352,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -26985,7 +26985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTracing",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTracing, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTracing, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TracingOption": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracing",
"IsSynced": "System.Boolean",
@@ -27040,7 +27040,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -27211,7 +27211,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -27606,7 +27606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTracing",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTracing, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTracing, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TracingOption": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracing",
"IsSynced": "System.Boolean",
@@ -27661,7 +27661,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -27795,7 +27795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27957,7 +27957,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -28049,7 +28049,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28302,7 +28302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28531,7 +28531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28782,7 +28782,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -28971,7 +28971,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -29460,7 +29460,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -29522,7 +29522,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -29672,7 +29672,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29814,7 +29814,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -29928,7 +29928,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -30177,7 +30177,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -30402,7 +30402,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -30555,7 +30555,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -30715,7 +30715,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -30773,7 +30773,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules",
"GenericTypeArguments": [],
@@ -30792,7 +30792,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -30981,7 +30981,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -31446,7 +31446,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleConnectionString, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ModuleId": "System.String",
"ConnectionString": "System.String"
@@ -31500,7 +31500,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -31650,7 +31650,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31792,7 +31792,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -31906,7 +31906,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32155,7 +32155,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32380,7 +32380,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32586,7 +32586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleTwin",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleTwin, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleTwin, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthenticationType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -32653,7 +32653,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -32842,7 +32842,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -33331,7 +33331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceMethodResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceMethodResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceMethodResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.Int32",
"Payload": "System.String"
@@ -33385,7 +33385,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -33646,7 +33646,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -34514,7 +34514,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -34721,7 +34721,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -35282,7 +35282,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules",
"GenericTypeArguments": [],
@@ -35301,7 +35301,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -35490,7 +35490,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -36003,7 +36003,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -36065,7 +36065,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -36215,7 +36215,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36357,7 +36357,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -36471,7 +36471,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36720,7 +36720,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36945,7 +36945,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -37149,7 +37149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleTwin",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleTwin, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleTwin, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthenticationType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -37216,7 +37216,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -37459,7 +37459,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -38255,7 +38255,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -38423,7 +38423,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38583,7 +38583,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -38721,7 +38721,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39018,7 +39018,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39291,7 +39291,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39540,7 +39540,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39724,7 +39724,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubConsumerGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -39957,7 +39957,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -40304,7 +40304,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -40363,7 +40363,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -40534,7 +40534,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -40951,7 +40951,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateWithNonceDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce",
"ResourceGroupName": "System.String",
@@ -41010,7 +41010,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -41197,7 +41197,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -41590,7 +41590,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -41862,7 +41862,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]",
"StartTimeUtc": "System.Nullable`1[System.DateTime]",
@@ -42137,7 +42137,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -42563,7 +42563,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubQuotaMetric, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"CurrentValue": "System.String",
@@ -42792,7 +42792,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubRegistryStatistics, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalDeviceCount": "System.Nullable`1[System.Int64]",
"EnabledDeviceCount": "System.Nullable`1[System.Int64]",
@@ -43021,7 +43021,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -43269,7 +43269,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -43458,7 +43458,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -43971,7 +43971,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -44068,7 +44068,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44207,7 +44207,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities",
"CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
@@ -44372,7 +44372,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44529,7 +44529,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities",
"CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
@@ -44670,7 +44670,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]",
"StartTimeUtc": "System.Nullable`1[System.DateTime]",
@@ -44987,7 +44987,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]",
"StartTimeUtc": "System.Nullable`1[System.DateTime]",
@@ -45304,7 +45304,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -46008,7 +46008,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -46213,7 +46213,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -46937,7 +46937,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -47363,7 +47363,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -47418,7 +47418,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -47625,7 +47625,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -48164,7 +48164,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -48221,7 +48221,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -48353,7 +48353,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48549,7 +48549,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -48639,7 +48639,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48936,7 +48936,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49209,7 +49209,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49533,7 +49533,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -49585,7 +49585,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -49637,7 +49637,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -49689,7 +49689,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]",
"MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]",
@@ -49750,7 +49750,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -49882,7 +49882,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50078,7 +50078,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -50168,7 +50168,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50465,7 +50465,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50738,7 +50738,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51014,7 +51014,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -51065,7 +51065,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties",
"GenericTypeArguments": [],
@@ -51084,7 +51084,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -51255,7 +51255,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -51650,7 +51650,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -51703,7 +51703,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties",
"GenericTypeArguments": [],
@@ -51722,7 +51722,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -51893,7 +51893,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -52310,7 +52310,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -52362,7 +52362,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -52379,7 +52379,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -52431,7 +52431,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties",
"GenericTypeArguments": [],
@@ -52446,7 +52446,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -52498,7 +52498,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties",
"GenericTypeArguments": [],
@@ -52513,7 +52513,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]",
"MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]",
@@ -52570,7 +52570,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties",
"GenericTypeArguments": [],
@@ -52585,7 +52585,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint",
"GenericTypeArguments": [],
@@ -52604,7 +52604,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -52718,7 +52718,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52878,7 +52878,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -52944,7 +52944,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53169,7 +53169,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53370,7 +53370,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53547,7 +53547,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53750,7 +53750,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -53939,7 +53939,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -54449,7 +54449,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -54638,7 +54638,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -55170,7 +55170,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -55302,7 +55302,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55462,7 +55462,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -55552,7 +55552,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55801,7 +55801,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56026,7 +56026,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56227,7 +56227,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56411,7 +56411,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -56466,7 +56466,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -56673,7 +56673,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -57212,7 +57212,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -57269,7 +57269,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -57401,7 +57401,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -57514,7 +57514,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -57604,7 +57604,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -57818,7 +57818,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -58008,7 +58008,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -58150,7 +58150,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -58299,7 +58299,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Details": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails",
"Result": "System.String"
@@ -58349,7 +58349,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Location": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange",
"Severity": "System.String",
@@ -58400,7 +58400,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties",
"GenericTypeArguments": [],
@@ -58419,7 +58419,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -58551,7 +58551,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -58765,7 +58765,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -58995,7 +58995,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -59061,7 +59061,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -59546,7 +59546,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -59983,7 +59983,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60335,7 +60335,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -60432,7 +60432,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60681,7 +60681,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties",
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
@@ -60735,7 +60735,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints",
"FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
@@ -60790,7 +60790,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -60810,7 +60810,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -60997,7 +60997,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61576,7 +61576,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties",
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
@@ -61728,7 +61728,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints",
"FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
@@ -61881,7 +61881,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -61999,7 +61999,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -62160,7 +62160,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -62219,7 +62219,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -62424,7 +62424,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -62889,7 +62889,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -63407,7 +63407,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsVerified": "System.Nullable`1[System.Boolean]",
"Expiry": "System.Nullable`1[System.DateTime]",
@@ -63691,7 +63691,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -63796,7 +63796,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DeviceContent": "System.Collections.Hashtable",
"ModulesContent": "System.Collections.Hashtable"
@@ -63851,7 +63851,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Results": "System.Collections.Hashtable",
"Queries": "System.Collections.Hashtable"
@@ -63896,7 +63896,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities",
"CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
@@ -63951,7 +63951,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64046,7 +64046,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties",
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
@@ -64092,7 +64092,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
"TtlAsIso8601": "System.Nullable`1[System.TimeSpan]",
@@ -64172,7 +64172,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints",
"FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
@@ -64219,7 +64219,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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]",
@@ -64266,7 +64266,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -64278,7 +64278,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -64325,7 +64325,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -64337,7 +64337,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -64384,7 +64384,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -64396,7 +64396,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -64443,7 +64443,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -64455,7 +64455,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]",
"MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]",
@@ -64507,7 +64507,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -64555,7 +64555,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -64567,7 +64567,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -64613,7 +64613,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -64625,7 +64625,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -64673,7 +64673,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -64686,7 +64686,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PartitionIds": "System.Collections.Generic.IList`1[System.String]",
"PartitionCount": "System.Nullable`1[System.Int32]",
@@ -64746,7 +64746,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -64759,7 +64759,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
"TtlAsIso8601": "System.Nullable`1[System.TimeSpan]",
@@ -64805,7 +64805,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -64818,7 +64818,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SasTtlAsIso8601": "System.Nullable`1[System.TimeSpan]",
"ConnectionString": "System.String",
@@ -64864,7 +64864,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -64876,7 +64876,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Location": "System.String",
"Role": "System.String"
@@ -64921,7 +64921,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -64933,7 +64933,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -64980,7 +64980,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku",
"Tier": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier",
@@ -65026,7 +65026,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65121,7 +65121,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65216,7 +65216,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurations": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurations",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurations, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurations, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent",
"SystemMetrics": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics",
@@ -65271,7 +65271,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployments": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployments",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployments, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeployments, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationContent",
"SystemMetrics": "Microsoft.Azure.Commands.Management.IotHub.Models.PSConfigurationMetrics",
@@ -65326,7 +65326,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType",
"SymmetricKey": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey",
@@ -65372,7 +65372,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65467,7 +65467,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrimaryKey": "System.String",
"SecondaryKey": "System.String"
@@ -65512,7 +65512,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSX509Thumbprint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrimaryThumbprint": "System.String",
"SecondaryThumbprint": "System.String"
@@ -65557,7 +65557,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IotEdge": "System.Boolean"
},
@@ -65601,7 +65601,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65696,7 +65696,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65791,7 +65791,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -65847,7 +65847,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]",
"DeviceId": "System.String"
@@ -66184,7 +66184,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracing": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracing",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracing, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracing, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingMode": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
"SamplingRate": "System.Int32"
@@ -66229,7 +66229,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66324,7 +66324,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -66377,7 +66377,7 @@
"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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsVerified": "System.Nullable`1[System.Boolean]",
"Expiry": "System.Nullable`1[System.DateTime]",
@@ -66427,7 +66427,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -66439,7 +66439,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66534,7 +66534,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScaleType": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType]",
"Minimum": "System.Nullable`1[System.Int64]",
@@ -66581,7 +66581,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -66593,7 +66593,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66688,7 +66688,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -66701,7 +66701,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PartitionCount": "System.Nullable`1[System.Int32]",
"RetentionTimeInDays": "System.Nullable`1[System.Int64]"
@@ -66746,7 +66746,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -66792,7 +66792,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -66840,7 +66840,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
"Name": "System.String",
@@ -66888,7 +66888,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66983,7 +66983,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -67078,7 +67078,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CompilationErrors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError]"
},
@@ -67122,7 +67122,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -67134,7 +67134,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Location": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange",
"Severity": "System.String",
@@ -67180,7 +67180,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Start": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition",
"End": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition"
@@ -67225,7 +67225,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.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Line": "System.Nullable`1[System.Int32]",
"Column": "System.Nullable`1[System.Int32]"
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json
index 6fe0bccdbcca..9a9143e6a21b 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CancellationRequested": "System.Nullable`1[System.Boolean]",
"Id": "System.String",
@@ -116,7 +116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsNames": "System.Collections.Generic.List`1[System.String]",
"KeyUsage": "System.Collections.Generic.List`1[System.String]",
@@ -384,7 +384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsNames": "System.Collections.Generic.List`1[System.String]",
"KeyUsage": "System.Collections.Generic.List`1[System.String]",
@@ -626,7 +626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Email": "System.String",
"VaultName": "System.String"
@@ -698,7 +698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -994,7 +994,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -1394,10 +1394,11 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
"Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
"Expires": "System.Nullable`1[System.DateTime]",
@@ -1472,13 +1473,31 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "HsmName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -1559,6 +1578,89 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "HsmObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "Name": "System.String",
+ "StatusMessage": "System.String",
+ "HsmUri": "System.String",
+ "TenantName": "System.String",
+ "Sku": "System.String",
+ "ProvisioningState": "System.String",
+ "TagsTable": "System.String",
+ "InitialAdminObjectIds": "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": "managedHsm",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
{
"Name": "ResourceId",
"AliasList": [],
@@ -1577,6 +1679,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "HsmResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
"AliasList": [
@@ -1770,6 +1890,42 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "KeyType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "CurveName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": [
@@ -2374,90 +2530,21 @@
]
},
{
- "Name": "InputObjectCreate",
+ "Name": "HsmInteractiveCreate",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "HsmName",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -2465,13 +2552,39 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Destination",
+ "Name": "Size",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeyType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -2483,10 +2596,7 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "HSM",
- "Software"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -2498,17 +2608,15 @@
},
{
"ParameterMetadata": {
- "Name": "Size",
+ "Name": "CurveName",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -2716,90 +2824,21 @@
]
},
{
- "Name": "InputObjectImport",
+ "Name": "HsmInteractiveImport",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "HsmName",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -2807,8 +2846,8 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
@@ -2859,33 +2898,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "Destination",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "HSM",
- "Software"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "Name",
@@ -3080,21 +3092,90 @@
]
},
{
- "Name": "ResourceIdCreate",
+ "Name": "InputObjectCreate",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -3103,8 +3184,8 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -3353,21 +3434,90 @@
]
},
{
- "Name": "ResourceIdImport",
+ "Name": "InputObjectImport",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -3376,8 +3526,8 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -3648,23 +3798,86 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "HsmInputObjectCreate",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
+ "Name": "HsmObject",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "Name": "System.String",
+ "StatusMessage": "System.String",
+ "HsmUri": "System.String",
+ "TenantName": "System.String",
+ "Sku": "System.String",
+ "ProvisioningState": "System.String",
+ "TagsTable": "System.String",
+ "InitialAdminObjectIds": "System.String[]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "managedHsm",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -3672,45 +3885,23 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Disable",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
+ "Position": 0,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyOps",
+ "Name": "Size",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": "System.String",
- "GenericTypeArguments": [],
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -3726,17 +3917,15 @@
},
{
"ParameterMetadata": {
- "Name": "Expires",
+ "Name": "KeyType",
"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": []
},
@@ -3745,24 +3934,22 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "CurveName",
"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": []
},
@@ -3778,14 +3965,14 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "Name",
"AliasList": [
- "Tags"
+ "KeyName"
],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3795,40 +3982,25 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "Disable",
+ "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.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -3840,224 +4012,17 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Backup",
- "NounName": "AzKeyVaultCertificate",
- "Name": "Backup-AzKeyVaultCertificate",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.BackupAzureKeyVaultCertificate",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByCertificateName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "SecretName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": [
- "Certificate"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "OutputFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.4.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": "ByCertificateName",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "KeyOps",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -4065,71 +4030,75 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SecretName"
- ],
+ "Name": "Expires",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "OutputFile",
+ "Name": "NotBefore",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 2,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -4188,29 +4157,35 @@
]
},
{
- "Name": "ByCertificate",
+ "Name": "HsmInputObjectImport",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [
- "Certificate"
- ],
+ "Name": "HsmObject",
+ "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
"VaultName": "System.String",
+ "ResourceId": "System.String",
"Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "StatusMessage": "System.String",
+ "HsmUri": "System.String",
+ "TenantName": "System.String",
+ "Sku": "System.String",
+ "ProvisioningState": "System.String",
+ "TagsTable": "System.String",
+ "InitialAdminObjectIds": "System.String[]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4246,6 +4221,20 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "managedHsm",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
@@ -4261,7 +4250,7 @@
},
{
"ParameterMetadata": {
- "Name": "OutputFile",
+ "Name": "KeyFilePath",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -4278,19 +4267,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 2,
+ "Mandatory": true,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "KeyFilePassword",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4300,7 +4289,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -4309,52 +4298,10 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
+ "Name": "Name",
"AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "KeyName"
],
- "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": "OutputFile",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -4370,14 +4317,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 2,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "Disable",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -4401,262 +4348,14 @@
},
{
"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": "Backup",
- "NounName": "AzKeyVaultKey",
- "Name": "Backup-AzKeyVaultKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.BackupAzureKeyVaultKey",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByKeyName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": [
- "Key"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "OutputFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.4.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": "ByKeyName",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "KeyOps",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -4664,71 +4363,75 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
+ "Name": "Expires",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "OutputFile",
+ "Name": "NotBefore",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 2,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -4787,82 +4490,11 @@
]
},
{
- "Name": "ByKey",
+ "Name": "ResourceIdCreate",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [
- "Key"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "OutputFile",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -4879,62 +4511,52 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 2,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "Destination",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "HSM",
+ "Software"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "Size",
+ "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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -4946,16 +4568,13 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "OutputFile",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -4971,14 +4590,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 2,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "Disable",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -5002,262 +4621,14 @@
},
{
"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": "Backup",
- "NounName": "AzKeyVaultSecret",
- "Name": "Backup-AzKeyVaultSecret",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.BackupAzureKeyVaultSecret",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "BySecretName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "SecretName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": [
- "Secret"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "OutputFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.4.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": "BySecretName",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "KeyOps",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -5265,71 +4636,75 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SecretName"
- ],
+ "Name": "Expires",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "OutputFile",
+ "Name": "NotBefore",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 2,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -5388,68 +4763,21 @@
]
},
{
- "Name": "BySecret",
+ "Name": "ResourceIdImport",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [
- "Secret"
- ],
+ "Name": "ResourceId",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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,
@@ -5458,12 +4786,12 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "OutputFile",
+ "Name": "KeyFilePath",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -5480,19 +4808,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 2,
+ "Mandatory": true,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "KeyFilePassword",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5502,7 +4830,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -5511,34 +4839,22 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "Destination",
+ "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": [],
+ "ValidateSet": [
+ "HSM",
+ "Software"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -5547,16 +4863,13 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "OutputFile",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -5572,14 +4885,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 2,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "Disable",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -5603,31 +4916,42 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "KeyOps",
+ "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]"
- },
- "ElementType": null,
+ "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": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Expires",
+ "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": [],
@@ -5639,219 +4963,106 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Backup",
- "NounName": "AzManagedHsmKey",
- "Name": "Backup-AzManagedHsmKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.BackupAzureManagedHsmKey",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByKeyName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "HsmName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": [
- "Key"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ {
+ "ParameterMetadata": {
+ "Name": "NotBefore",
+ "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": false
},
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
],
- "ReturnType": "System.Boolean"
+ "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": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "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
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "OutputFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.4.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
+ }
+ ]
},
{
- "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": "ByKeyName",
+ "Name": "HsmResourceIdCreate",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "HsmName",
+ "Name": "HsmResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -5869,16 +5080,40 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Size",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
+ "Name": "KeyType",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -5892,16 +5127,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "OutputFile",
+ "Name": "CurveName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -5916,16 +5151,42 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 2,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Disable",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -5949,31 +5210,16 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "KeyOps",
+ "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]"
- },
- "ElementType": null,
+ "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": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -5985,115 +5231,69 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByKey",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [
- "Key"
- ],
+ "Name": "Expires",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
- },
+ "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": [],
- "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"
- }
+ "GenericTypeArguments": [
+ "System.DateTime"
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "OutputFile",
+ "Name": "NotBefore",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 2,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -6152,11 +5352,11 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "HsmResourceIdImport",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "OutputFile",
+ "Name": "HsmResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -6173,19 +5373,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 2,
+ "Mandatory": true,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "KeyFilePath",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -6195,419 +5395,42 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "KeyFilePassword",
+ "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.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, 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
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Get",
- "NounName": "AzKeyVault",
- "Name": "Get-AzKeyVault",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVault",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
- "SupportsPaging": false,
- "DefaultParameterSetName": "GetVaultByName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- },
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "TagsTable": "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": "resource",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- },
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletionDate": "System.Nullable`1[System.DateTime]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "Id": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "VaultUri": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "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": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "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": "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": "GetVaultByName",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "Name",
"AliasList": [
- "Name"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -6624,19 +5447,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 0,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "Disable",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6646,23 +5469,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "KeyOps",
"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",
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -6675,35 +5498,22 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "Expires",
+ "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.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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.DateTime"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -6715,70 +5525,43 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByDeletedVault",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "VaultName",
- "AliasList": [
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Location",
+ "Name": "NotBefore",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -6790,7 +5573,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -6837,13 +5620,39 @@
]
},
{
- "Name": "ListAllDeletedVaultsInSubscription",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Disable",
+ "AliasList": [],
+ "Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
"AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
@@ -6858,38 +5667,101 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
+ "Name": "KeyOps",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Expires",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NotBefore",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
"AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "Tags"
],
"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.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": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -6901,12 +5773,7 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -6952,254 +5819,55 @@
"AliasList": []
},
{
- "VerbName": "Get",
+ "VerbName": "Backup",
"NounName": "AzKeyVaultCertificate",
- "Name": "Get-AzKeyVaultCertificate",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultCertificate",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
+ "Name": "Backup-AzKeyVaultCertificate",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.BackupAzureKeyVaultCertificate",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByName",
+ "DefaultParameterSetName": "ByCertificateName",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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"
- ]
- },
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
- "KeyId": "System.String",
- "SecretId": "System.String",
- "Thumbprint": "System.String",
- "RecoveryLevel": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
]
- },
+ }
+ ],
+ "Parameters": [
{
+ "Name": "VaultName",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
- "RecoveryLevel": "System.String",
- "Thumbprint": "System.String",
- "SecretId": "System.String",
- "KeyId": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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"
- }
- ],
+ "Methods": [],
"Constructors": []
},
- "ParameterSets": [
- "__AllParameterSets"
- ]
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": "VaultName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SecretName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -7217,34 +5885,24 @@
},
{
"Name": "InputObject",
- "AliasList": [],
+ "AliasList": [
+ "Certificate"
+ ],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7280,20 +5938,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -7303,7 +5947,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "Name": "OutputFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -7321,14 +5965,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "CertificateName"
- ],
+ "Name": "Force",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7338,119 +5980,45 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "Version",
+ "Name": "DefaultProfile",
"AliasList": [
- "CertificateVersion"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System",
- "Name": "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": "IncludeVersions",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
- },
+ }
+ ],
+ "ParameterSets": [
{
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "IncludePending",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByName",
+ "Name": "ByCertificateName",
"Parameters": [
{
"ParameterMetadata": {
@@ -7480,7 +6048,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "CertificateName"
+ "SecretName"
],
"Type": {
"Namespace": "System",
@@ -7497,19 +6065,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "OutputFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -7519,16 +6087,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IncludePending",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -7592,11 +6160,80 @@
]
},
{
- "Name": "ByCertificateNameAndVersion",
+ "Name": "ByCertificate",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "InputObject",
+ "AliasList": [
+ "Certificate"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OutputFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -7613,17 +6250,83 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [
- "CertificateName"
+ "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": "OutputFile",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -7639,21 +6342,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "CertificateVersion"
- ],
+ "Name": "Force",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7665,8 +6366,8 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 2,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -7710,9 +6411,232 @@
"ValueFromPipelineByPropertyName": false
}
]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Backup",
+ "NounName": "AzKeyVaultKey",
+ "Name": "Backup-AzKeyVaultKey",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.BackupAzureKeyVaultKey",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByKeyName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ByCertificateAllVersions",
+ "Name": "HsmName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": [
+ "Key"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "IsHsm": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "RecoveryLevel": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "OutputFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.4.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": "ByKeyName",
"Parameters": [
{
"ParameterMetadata": {
@@ -7742,7 +6666,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "CertificateName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -7766,7 +6690,31 @@
},
{
"ParameterMetadata": {
- "Name": "IncludeVersions",
+ "Name": "OutputFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -7783,7 +6731,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -7830,90 +6778,21 @@
]
},
{
- "Name": "ByNameInputObject",
+ "Name": "HsmByKeyName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "HsmName",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -7921,15 +6800,15 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "CertificateName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -7946,19 +6825,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "OutputFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -7968,16 +6847,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IncludePending",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -8041,39 +6920,32 @@
]
},
{
- "Name": "ByCertificateNameAndVersionInputObject",
+ "Name": "ByKey",
"Parameters": [
{
"ParameterMetadata": {
"Name": "InputObject",
- "AliasList": [],
+ "AliasList": [
+ "Key"
+ ],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "RecoveryLevel": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8109,20 +6981,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -8138,10 +6996,8 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "CertificateName"
- ],
+ "Name": "OutputFile",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8157,21 +7013,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "CertificateVersion"
- ],
+ "Name": "Force",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8183,8 +7037,8 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 2,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -8230,107 +7084,12 @@
]
},
{
- "Name": "ByCertificateAllVersionsInputObject",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "OutputFile",
"AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "CertificateName"
- ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8346,14 +7105,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IncludeVersions",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -8370,7 +7129,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -8415,13 +7174,217 @@
"ValueFromPipelineByPropertyName": false
}
]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Backup",
+ "NounName": "AzKeyVaultSecret",
+ "Name": "Backup-AzKeyVaultSecret",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.BackupAzureKeyVaultSecret",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "BySecretName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ByNameResourceId",
+ "Name": "Name",
+ "AliasList": [
+ "SecretName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": [
+ "Secret"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "OutputFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.4.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": "BySecretName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -8441,13 +7404,13 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "CertificateName"
+ "SecretName"
],
"Type": {
"Namespace": "System",
@@ -8464,19 +7427,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "OutputFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -8486,16 +7449,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IncludePending",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -8559,21 +7522,68 @@
]
},
{
- "Name": "ByCertificateNameAndVersionResourceId",
+ "Name": "BySecret",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
- "AliasList": [],
+ "Name": "InputObject",
+ "AliasList": [
+ "Secret"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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,
@@ -8582,15 +7592,13 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "CertificateName"
- ],
+ "Name": "OutputFile",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8606,21 +7614,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "CertificateVersion"
- ],
+ "Name": "Force",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8632,8 +7638,8 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 2,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -8679,11 +7685,11 @@
]
},
{
- "Name": "ByCertificateAllVersionsResourceId",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "OutputFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -8700,40 +7706,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "CertificateName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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,
+ "Mandatory": false,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IncludeVersions",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -8750,55 +7730,11 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "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",
@@ -8845,22 +7781,42 @@
},
{
"VerbName": "Get",
- "NounName": "AzKeyVaultCertificateContact",
- "Name": "Get-AzKeyVaultCertificateContact",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultCertificateContact",
+ "NounName": "AzKeyVault",
+ "Name": "Get-AzKeyVault",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVault",
"SupportsShouldProcess": false,
"ConfirmImpact": 0,
"SupportsPaging": false,
- "DefaultParameterSetName": "VaultName",
+ "DefaultParameterSetName": "GetVaultByName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Email": "System.String",
- "VaultName": "System.String"
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8896,40 +7852,96 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
"ParameterSets": [
"__AllParameterSets"
]
- }
- ],
- "Parameters": [
+ },
{
- "Name": "VaultName",
- "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "resource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
},
{
- "Name": "InputObject",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -8937,20 +7949,23 @@
"EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
"EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
"EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletionDate": "System.Nullable`1[System.DateTime]",
"SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
"ResourceGroupName": "System.String",
- "VaultName": "System.String",
+ "Location": "System.String",
"ResourceId": "System.String",
- "VaultUri": "System.String",
+ "VaultName": "System.String",
+ "Id": "System.String",
"AccessPoliciesText": "System.String",
"Sku": "System.String",
"TenantName": "System.String",
+ "VaultUri": "System.String",
"NetworkAclsText": "System.String",
"TagsTable": "System.String"
},
@@ -8983,27 +7998,28 @@
"ReturnType": "System.Type"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Constructors": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "VaultName",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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,
@@ -9011,7 +8027,25 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "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": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -9028,6 +8062,42 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "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": "DefaultProfile",
"AliasList": [
@@ -9064,12 +8134,14 @@
],
"ParameterSets": [
{
- "Name": "VaultName",
+ "Name": "GetVaultByName",
"Parameters": [
{
"ParameterMetadata": {
"Name": "VaultName",
- "AliasList": [],
+ "AliasList": [
+ "Name"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -9085,10 +8157,58 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": 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": false,
+ "Position": 1,
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -9132,90 +8252,23 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "ByDeletedVault",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
+ "Name": "VaultName",
+ "AliasList": [
+ "Name"
+ ],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -9224,7 +8277,55 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "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": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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
},
{
@@ -9269,16 +8370,16 @@
]
},
{
- "Name": "ByResourceId",
+ "Name": "ListAllDeletedVaultsInSubscription",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "InRemovedState",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9288,12 +8389,12 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -9385,9 +8486,9 @@
},
{
"VerbName": "Get",
- "NounName": "AzKeyVaultCertificateIssuer",
- "Name": "Get-AzKeyVaultCertificateIssuer",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultCertificateIssuer",
+ "NounName": "AzKeyVaultCertificate",
+ "Name": "Get-AzKeyVaultCertificate",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultCertificate",
"SupportsShouldProcess": false,
"ConfirmImpact": 0,
"SupportsPaging": false,
@@ -9396,12 +8497,19 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "VaultName": "System.String",
"Name": "System.String",
- "IssuerProvider": "System.String",
- "VaultName": "System.String"
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9447,15 +8555,137 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "OrganizationDetails": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
- "ApiKey": "System.Security.SecureString",
- "AccountId": "System.String",
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
+ "KeyId": "System.String",
+ "SecretId": "System.String",
+ "Thumbprint": "System.String",
+ "RecoveryLevel": "System.String",
+ "VaultName": "System.String",
"Name": "System.String",
- "IssuerProvider": "System.String",
- "VaultName": "System.String"
+ "Version": "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": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ },
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
+ "RecoveryLevel": "System.String",
+ "Thumbprint": "System.String",
+ "SecretId": "System.String",
+ "KeyId": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ },
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9524,7 +8754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -9626,7 +8856,7 @@
{
"Name": "Name",
"AliasList": [
- "IssuerName"
+ "CertificateName"
],
"Type": {
"Namespace": "System",
@@ -9643,6 +8873,80 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "Version",
+ "AliasList": [
+ "CertificateVersion"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "IncludeVersions",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IncludePending",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -9709,7 +9013,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "IssuerName"
+ "CertificateName"
],
"Type": {
"Namespace": "System",
@@ -9731,6 +9035,54 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "IncludePending",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -9773,90 +9125,21 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "ByCertificateNameAndVersion",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -9865,14 +9148,14 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "IssuerName"
+ "CertificateName"
],
"Type": {
"Namespace": "System",
@@ -9889,11 +9172,37 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Version",
+ "AliasList": [
+ "CertificateVersion"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -9936,11 +9245,11 @@
]
},
{
- "Name": "ByResourceId",
+ "Name": "ByCertificateAllVersions",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -9960,13 +9269,13 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "IssuerName"
+ "CertificateName"
],
"Type": {
"Namespace": "System",
@@ -9983,11 +9292,35 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "IncludeVersions",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DefaultProfile",
@@ -10030,295 +9363,135 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByNameInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IssuerName"
- ],
+ "Name": "InputObject",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 1,
- "ValueFromPipeline": false,
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
+ "Name": "Name",
"AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "CertificateName"
],
"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,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Get",
- "NounName": "AzKeyVaultCertificateOperation",
- "Name": "Get-AzKeyVaultCertificateOperation",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultCertificateOperation",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "CancellationRequested": "System.Nullable`1[System.Boolean]",
- "Id": "System.String",
- "Status": "System.String",
- "StatusDetails": "System.String",
- "RequestId": "System.String",
- "Target": "System.String",
- "Issuer": "System.String",
- "CertificateSigningRequest": "System.String",
- "ErrorCode": "System.String",
- "ErrorMessage": "System.String",
- "Name": "System.String",
- "VaultName": "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": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "CertificateName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "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": "ByName",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "InRemovedState",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10328,23 +9501,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "CertificateName"
- ],
+ "Name": "IncludePending",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10354,10 +9525,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -10403,7 +9574,7 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "ByCertificateNameAndVersionInputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -10411,19 +9582,31 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
"VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10459,6 +9642,20 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
@@ -10474,31 +9671,44 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
+ "Name": "Name",
"AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "CertificateName"
],
"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": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Version",
+ "AliasList": [
+ "CertificateVersion"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -10506,16 +9716,11 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -10556,528 +9761,342 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Get",
- "NounName": "AzKeyVaultKey",
- "Name": "Get-AzKeyVaultKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultKey",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByVaultName",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ "Name": "ByCertificateAllVersionsInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "CertificateName"
],
- "ReturnType": "System.Boolean"
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IncludeVersions",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
+ "Mandatory": true,
+ "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
+ }
]
},
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ "Name": "ByNameResourceId",
+ "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
},
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "CertificateName"
],
- "ReturnType": "System.Boolean"
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": false,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- },
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ {
+ "ParameterMetadata": {
+ "Name": "IncludePending",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "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
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
]
},
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "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": true
- },
- {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Version",
- "AliasList": [
- "KeyVersion"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "IncludeVersions",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "OutFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "ByKeyName",
+ "Name": "ByCertificateNameAndVersionResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -11097,13 +10116,13 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "KeyName"
+ "CertificateName"
],
"Type": {
"Namespace": "System",
@@ -11129,7 +10148,7 @@
"ParameterMetadata": {
"Name": "Version",
"AliasList": [
- "KeyVersion"
+ "CertificateVersion"
],
"Type": {
"Namespace": "System",
@@ -11151,30 +10170,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "OutFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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",
@@ -11217,11 +10212,11 @@
]
},
{
- "Name": "ByVaultName",
+ "Name": "ByCertificateAllVersionsResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -11241,13 +10236,13 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "KeyName"
+ "CertificateName"
],
"Type": {
"Namespace": "System",
@@ -11264,14 +10259,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "IncludeVersions",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -11288,31 +10283,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "OutFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -11359,106 +10330,8 @@
]
},
{
- "Name": "ByKeyVersions",
+ "Name": "__AllParameterSets",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "IncludeVersions",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "OutFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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",
@@ -11499,156 +10372,236 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzKeyVaultCertificateContact",
+ "Name": "Get-AzKeyVaultCertificateContact",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultCertificateContact",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "VaultName",
+ "OutputTypes": [
{
- "Name": "ByInputObjectVaultName",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Email": "System.String",
+ "VaultName": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
],
- "Type": {
- "Namespace": "System",
- "Name": "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
+ "ReturnType": "System.Boolean"
},
- "Mandatory": false,
- "Position": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ {
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "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": 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": "VaultName",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "OutFile",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -11665,8 +10618,8 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -11712,7 +10665,7 @@
]
},
{
- "Name": "ByInputObjectKeyName",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -11721,7 +10674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -11809,44 +10762,31 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Version",
+ "Name": "DefaultProfile",
"AliasList": [
- "KeyVersion"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -11854,14 +10794,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 2,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceId",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "OutFile",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -11878,10 +10823,10 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -11925,155 +10870,380 @@
]
},
{
- "Name": "ByInputObjectKeyVersions",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "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": "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",
+ "Name": "Clear",
"Parameters": [],
- "ReturnType": "System.Type"
+ "ReturnType": "System.Void"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "IncludeVersions",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzKeyVaultCertificateIssuer",
+ "Name": "Get-AzKeyVaultCertificateIssuer",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultCertificateIssuer",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "IssuerProvider": "System.String",
+ "VaultName": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OrganizationDetails": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
+ "ApiKey": "System.Security.SecureString",
+ "AccountId": "System.String",
+ "Name": "System.String",
+ "IssuerProvider": "System.String",
+ "VaultName": "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": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "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": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "IssuerName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ByName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "OutFile",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IssuerName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -12090,7 +11260,7 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -12136,21 +11306,90 @@
]
},
{
- "Name": "ByResourceIdVaultName",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -12159,14 +11398,14 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "KeyName"
+ "IssuerName"
],
"Type": {
"Namespace": "System",
@@ -12188,54 +11427,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "OutFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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",
@@ -12278,7 +11469,7 @@
]
},
{
- "Name": "ByResourceIdKeyName",
+ "Name": "ByResourceId",
"Parameters": [
{
"ParameterMetadata": {
@@ -12308,7 +11499,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "KeyName"
+ "IssuerName"
],
"Type": {
"Namespace": "System",
@@ -12325,25 +11516,38 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Version",
+ "Name": "DefaultProfile",
"AliasList": [
- "KeyVersion"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -12351,15 +11555,22 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 2,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "OutFile",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IssuerName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -12376,7 +11587,7 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -12420,13 +11631,222 @@
"ValueFromPipelineByPropertyName": false
}
]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzKeyVaultCertificateOperation",
+ "Name": "Get-AzKeyVaultCertificateOperation",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultCertificateOperation",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CancellationRequested": "System.Nullable`1[System.Boolean]",
+ "Id": "System.String",
+ "Status": "System.String",
+ "StatusDetails": "System.String",
+ "RequestId": "System.String",
+ "Target": "System.String",
+ "Issuer": "System.String",
+ "CertificateSigningRequest": "System.String",
+ "ErrorCode": "System.String",
+ "ErrorMessage": "System.String",
+ "Name": "System.String",
+ "VaultName": "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": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ByResourceIdKeyVersions",
+ "Name": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ }
+ ]
+ },
+ "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": "ByName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -12446,13 +11866,13 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "KeyName"
+ "CertificateName"
],
"Type": {
"Namespace": "System",
@@ -12476,16 +11896,31 @@
},
{
"ParameterMetadata": {
- "Name": "IncludeVersions",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -12493,33 +11928,81 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByInputObject",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "OutFile",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
@@ -12566,30 +12049,6 @@
{
"Name": "__AllParameterSets",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "OutFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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",
@@ -12636,9 +12095,9 @@
},
{
"VerbName": "Get",
- "NounName": "AzKeyVaultSecret",
- "Name": "Get-AzKeyVaultSecret",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultSecret",
+ "NounName": "AzKeyVaultKey",
+ "Name": "Get-AzKeyVaultKey",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultKey",
"SupportsShouldProcess": false,
"ConfirmImpact": 0,
"SupportsPaging": false,
@@ -12647,16 +12106,17 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
"Expires": "System.Nullable`1[System.DateTime]",
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
+ "RecoveryLevel": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -12707,18 +12167,19 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
+ "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
"Expires": "System.Nullable`1[System.DateTime]",
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "SecretValue": "System.Security.SecureString",
- "ContentType": "System.String",
+ "RecoveryLevel": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -12769,9 +12230,10 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
"ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
@@ -12780,7 +12242,7 @@
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
+ "RecoveryLevel": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -12831,24 +12293,25 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
+ "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "SecretValue": "System.Security.SecureString",
- "ContentType": "System.String",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Version": "System.String",
+ "RecoveryLevel": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
- "Version": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -12912,13 +12375,31 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "HsmName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -12999,6 +12480,89 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "HsmObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "Name": "System.String",
+ "StatusMessage": "System.String",
+ "HsmUri": "System.String",
+ "TenantName": "System.String",
+ "Sku": "System.String",
+ "ProvisioningState": "System.String",
+ "TagsTable": "System.String",
+ "InitialAdminObjectIds": "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": "managedHsm",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
{
"Name": "ResourceId",
"AliasList": [],
@@ -13017,10 +12581,28 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "HsmResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
"AliasList": [
- "SecretName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -13040,7 +12622,7 @@
{
"Name": "Version",
"AliasList": [
- "SecretVersion"
+ "KeyVersion"
],
"Type": {
"Namespace": "System",
@@ -13094,15 +12676,33 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "OutFile",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "Namespace": "System",
+ "Name": "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",
@@ -13129,7 +12729,7 @@
],
"ParameterSets": [
{
- "Name": "BySecretName",
+ "Name": "ByKeyName",
"Parameters": [
{
"ParameterMetadata": {
@@ -13159,7 +12759,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SecretName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -13185,7 +12785,7 @@
"ParameterMetadata": {
"Name": "Version",
"AliasList": [
- "SecretVersion"
+ "KeyVersion"
],
"Type": {
"Namespace": "System",
@@ -13207,6 +12807,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "OutFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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",
@@ -13279,7 +12903,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SecretName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -13325,6 +12949,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "OutFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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",
@@ -13367,7 +13015,7 @@
]
},
{
- "Name": "BySecretVersions",
+ "Name": "ByKeyVersions",
"Parameters": [
{
"ParameterMetadata": {
@@ -13397,7 +13045,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SecretName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -13443,6 +13091,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "OutFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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",
@@ -13485,90 +13157,21 @@
]
},
{
- "Name": "ByInputObjectVaultName",
+ "Name": "HsmByKeyName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "HsmName",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -13576,15 +13179,15 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SecretName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -13601,19 +13204,21 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
+ "Name": "Version",
+ "AliasList": [
+ "KeyVersion"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -13625,6 +13230,30 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OutFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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,
@@ -13672,90 +13301,21 @@
]
},
{
- "Name": "ByInputObjectSecretName",
+ "Name": "HsmByVaultName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "HsmName",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -13763,15 +13323,15 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SecretName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -13788,17 +13348,39 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "SecretVersion"
- ],
+ "Name": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "OutFile",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -13812,10 +13394,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 2,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -13861,7 +13443,149 @@
]
},
{
- "Name": "ByInputObjectSecretVersions",
+ "Name": "HsmByKeyVersions",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "HsmName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "IncludeVersions",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "OutFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ByInputObjectVaultName",
"Parameters": [
{
"ParameterMetadata": {
@@ -13870,7 +13594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -13960,7 +13684,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SecretName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -13977,14 +13701,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IncludeVersions",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -14001,7 +13725,31 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OutFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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
@@ -14048,12 +13796,107 @@
]
},
{
- "Name": "ByResourceIdVaultName",
+ "Name": "ByInputObjectKeyName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "InputObject",
"AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -14070,15 +13913,15 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "Version",
"AliasList": [
- "SecretName"
+ "KeyVersion"
],
"Type": {
"Namespace": "System",
@@ -14093,21 +13936,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
- "Position": 1,
+ "Mandatory": true,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "OutFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -14117,7 +13960,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -14166,21 +14009,90 @@
]
},
{
- "Name": "ByResourceIdSecretName",
+ "Name": "ByInputObjectKeyVersions",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -14189,14 +14101,14 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SecretName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -14220,10 +14132,32 @@
},
{
"ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "SecretVersion"
- ],
+ "Name": "IncludeVersions",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "OutFile",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -14237,10 +14171,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 2,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -14286,21 +14220,86 @@
]
},
{
- "Name": "ByResourceIdSecretVersions",
+ "Name": "HsmByInputObjectVaultName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "HsmObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "Name": "System.String",
+ "StatusMessage": "System.String",
+ "HsmUri": "System.String",
+ "TenantName": "System.String",
+ "Sku": "System.String",
+ "ProvisioningState": "System.String",
+ "TagsTable": "System.String",
+ "InitialAdminObjectIds": "System.String[]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "managedHsm",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -14309,14 +14308,14 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SecretName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -14333,14 +14332,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IncludeVersions",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -14357,7 +14356,31 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OutFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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
@@ -14404,8 +14427,173 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "HsmByInputObjectKeyName",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "HsmObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "Name": "System.String",
+ "StatusMessage": "System.String",
+ "HsmUri": "System.String",
+ "TenantName": "System.String",
+ "Sku": "System.String",
+ "ProvisioningState": "System.String",
+ "TagsTable": "System.String",
+ "InitialAdminObjectIds": "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": "managedHsm",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Version",
+ "AliasList": [
+ "KeyVersion"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OutFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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",
@@ -14446,524 +14634,220 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Get",
- "NounName": "AzManagedHsmKey",
- "Name": "Get-AzManagedHsmKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureManagedHsmKey",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
- "SupportsPaging": false,
- "DefaultParameterSetName": "SpecifyHsmByHsmNameGetKeyWithoutConstraint",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ "Name": "HsmByInputObjectKeyVersions",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "HsmObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "Name": "System.String",
+ "StatusMessage": "System.String",
+ "HsmUri": "System.String",
+ "TenantName": "System.String",
+ "Sku": "System.String",
+ "ProvisioningState": "System.String",
+ "TagsTable": "System.String",
+ "InitialAdminObjectIds": "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": "managedHsm",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
],
- "ReturnType": "System.Boolean"
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IncludeVersions",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- },
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ {
+ "ParameterMetadata": {
+ "Name": "OutFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "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
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
]
},
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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"
- ]
- },
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": "HsmName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "Name": "System.String",
- "StatusMessage": "System.String",
- "HsmUri": "System.String",
- "TenantName": "System.String",
- "Sku": "System.String",
- "ProvisioningState": "System.String",
- "TagsTable": "System.String",
- "InitialAdminObjectIds": "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": "managedHsm",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "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": true
- },
- {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Version",
- "AliasList": [
- "KeyVersion"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "IncludeVersions",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "OutFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "SpecifyHsmByHsmNameGetKeyWithoutConstraint",
+ "Name": "ByResourceIdVaultName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "HsmName",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -14983,7 +14867,7 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -15101,11 +14985,11 @@
]
},
{
- "Name": "SpecifyHsmByHsmNameGetKeyWithSpecifiedVersion",
+ "Name": "ByResourceIdKeyName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "HsmName",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -15125,7 +15009,7 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -15245,11 +15129,11 @@
]
},
{
- "Name": "SpecifyHsmByHsmNameGetKeyIncludeAllVersions",
+ "Name": "ByResourceIdKeyVersions",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "HsmName",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -15269,7 +15153,7 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -15387,86 +15271,21 @@
]
},
{
- "Name": "SpecifyHsmByInputObjectGetKeyWithoutConstraint",
+ "Name": "HsmByResourceIdVaultName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "HsmResourceId",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "Name": "System.String",
- "StatusMessage": "System.String",
- "HsmUri": "System.String",
- "TenantName": "System.String",
- "Sku": "System.String",
- "ProvisioningState": "System.String",
- "TagsTable": "System.String",
- "InitialAdminObjectIds": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "managedHsm",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -15474,9 +15293,9 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -15594,86 +15413,21 @@
]
},
{
- "Name": "SpecifyHsmByInputObjectGetKeyWithSpecifiedVersion",
+ "Name": "HsmByResourceIdKeyName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "HsmResourceId",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "Name": "System.String",
- "StatusMessage": "System.String",
- "HsmUri": "System.String",
- "TenantName": "System.String",
- "Sku": "System.String",
- "ProvisioningState": "System.String",
- "TagsTable": "System.String",
- "InitialAdminObjectIds": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "managedHsm",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -15681,9 +15435,9 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -15803,86 +15557,21 @@
]
},
{
- "Name": "SpecifyHsmByInputObjectGetKeyIncludeAllVersions",
+ "Name": "HsmByResourceIdKeyVersions",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "HsmResourceId",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "Name": "System.String",
- "StatusMessage": "System.String",
- "HsmUri": "System.String",
- "TenantName": "System.String",
- "Sku": "System.String",
- "ProvisioningState": "System.String",
- "TagsTable": "System.String",
- "InitialAdminObjectIds": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "managedHsm",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -15890,9 +15579,9 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -16010,82 +15699,8 @@
]
},
{
- "Name": "SpecifyHsmByResourceIdGetKeyWithoutConstraint",
+ "Name": "__AllParameterSets",
"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": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
- {
- "ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "OutFile",
@@ -16150,391 +15765,222 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzKeyVaultSecret",
+ "Name": "Get-AzKeyVaultSecret",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultSecret",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByVaultName",
+ "OutputTypes": [
{
- "Name": "SpecifyHsmByResourceIdGetKeyWithSpecifiedVersion",
- "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
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": true,
- "Position": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "KeyVersion"
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
],
- "Type": {
- "Namespace": "System",
- "Name": "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
+ "ReturnType": "System.Boolean"
},
- "Mandatory": true,
- "Position": 2,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "OutFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ },
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "SecretValue": "System.Security.SecureString",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
],
- "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
+ "ReturnType": "System.Boolean"
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
]
},
{
- "Name": "SpecifyHsmByResourceIdGetKeyIncludeAllVersions",
- "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
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
],
- "Type": {
- "Namespace": "System",
- "Name": "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": "IncludeVersions",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "OutFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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
+ "ReturnType": "System.Boolean"
},
- "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
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
]
},
- {
- "Name": "__AllParameterSets",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "OutFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Import",
- "NounName": "AzKeyVaultCertificate",
- "Name": "Import-AzKeyVaultCertificate",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.ImportAzureKeyVaultCertificate",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ImportCertificateFromFile",
- "OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
"Expires": "System.Nullable`1[System.DateTime]",
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
- "KeyId": "System.String",
- "SecretId": "System.String",
- "Thumbprint": "System.String",
- "RecoveryLevel": "System.String",
+ "SecretValue": "System.Security.SecureString",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
"Version": "System.String",
@@ -16569,7 +16015,13 @@
"ReturnType": "System.Type"
}
],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -16596,19 +16048,86 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "CertificateName"
- ],
+ "Name": "InputObject",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -16616,7 +16135,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "FilePath",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -16631,11 +16150,13 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "CertificateString",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SecretName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -16649,15 +16170,17 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "Password",
- "AliasList": [],
+ "Name": "Version",
+ "AliasList": [
+ "SecretVersion"
+ ],
"Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16670,12 +16193,12 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "CertificateCollection",
+ "Name": "IncludeVersions",
"AliasList": [],
"Type": {
- "Namespace": "System.Security.Cryptography.X509Certificates",
- "Name": "System.Security.Cryptography.X509Certificates.X509Certificate2Collection",
- "AssemblyQualifiedName": "System.Security.Cryptography.X509Certificates.X509Certificate2Collection, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16688,12 +16211,12 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Tag",
+ "Name": "InRemovedState",
"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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16741,7 +16264,7 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "BySecretName",
"Parameters": [
{
"ParameterMetadata": {
@@ -16765,13 +16288,13 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "CertificateName"
+ "SecretName"
],
"Type": {
"Namespace": "System",
@@ -16791,16 +16314,18 @@
"Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [],
+ "Name": "Version",
+ "AliasList": [
+ "SecretVersion"
+ ],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16812,10 +16337,10 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 2,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -16859,56 +16384,8 @@
]
},
{
- "Name": "ImportCertificateFromFile",
+ "Name": "ByVaultName",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "FilePath",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Password",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, 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": "VaultName",
@@ -16931,13 +16408,13 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "CertificateName"
+ "SecretName"
],
"Type": {
"Namespace": "System",
@@ -16954,19 +16431,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "InRemovedState",
"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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16981,7 +16458,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -17025,56 +16502,8 @@
]
},
{
- "Name": "ImportWithPrivateKeyFromString",
+ "Name": "BySecretVersions",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "CertificateString",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Password",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, 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": "VaultName",
@@ -17097,13 +16526,13 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "CertificateName"
+ "SecretName"
],
"Type": {
"Namespace": "System",
@@ -17123,16 +16552,16 @@
"Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "IncludeVersions",
"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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17144,10 +16573,10 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -17191,45 +16620,90 @@
]
},
{
- "Name": "ImportWithPrivateKeyFromCollection",
+ "Name": "ByInputObjectVaultName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "CertificateCollection",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Security.Cryptography.X509Certificates",
- "Name": "System.Security.Cryptography.X509Certificates.X509Certificate2Collection",
- "AssemblyQualifiedName": "System.Security.Cryptography.X509Certificates.X509Certificate2Collection, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": 2,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -17238,14 +16712,14 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "CertificateName"
+ "SecretName"
],
"Type": {
"Namespace": "System",
@@ -17262,19 +16736,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "InRemovedState",
"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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17289,7 +16763,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -17331,287 +16805,92 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Add",
- "NounName": "AzKeyVaultManagedStorageAccount",
- "Name": "Add-AzKeyVaultManagedStorageAccount",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.AddAzureKeyVaultManagedStorageAccount",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "__AllParameterSets",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
- "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
- "ActiveKeyName": "System.String",
- "AccountName": "System.String",
- "AccountResourceId": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "AccountName",
- "AliasList": [
- "StorageAccountName",
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "AccountResourceId",
- "AliasList": [
- "StorageAccountResourceId"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "ActiveKeyName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "DisableAutoRegenerateKey",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "RegenerationPeriod",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "Disable",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "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": "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",
+ "Name": "ByInputObjectSecretName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -17620,15 +16899,14 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AccountName",
+ "Name": "Name",
"AliasList": [
- "StorageAccountName",
- "Name"
+ "SecretName"
],
"Type": {
"Namespace": "System",
@@ -17648,13 +16926,13 @@
"Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AccountResourceId",
+ "Name": "Version",
"AliasList": [
- "StorageAccountResourceId"
+ "SecretVersion"
],
"Type": {
"Namespace": "System",
@@ -17669,49 +16947,40 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": 2,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ActiveKeyName",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "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": "DisableAutoRegenerateKey",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -17723,41 +16992,115 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByInputObjectSecretVersions",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "RegenerationPeriod",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
- "GenericTypeArguments": [
- "System.TimeSpan"
+ "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"
+ }
],
- "Methods": [],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Disable",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SecretName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -17767,23 +17110,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "IncludeVersions",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17795,10 +17136,10 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -17840,215 +17181,13 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Backup",
- "NounName": "AzKeyVaultManagedStorageAccount",
- "Name": "Backup-AzKeyVaultManagedStorageAccount",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.BackupAzureKeyVaultManagedStorageAccount",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByStorageAccountName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "StorageAccountName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": [
- "StorageAccount"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "AccountName": "System.String",
- "AccountResourceId": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "OutputFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.4.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": "ByStorageAccountName",
+ "Name": "ByResourceIdVaultName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -18068,13 +17207,13 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "StorageAccountName"
+ "SecretName"
],
"Type": {
"Namespace": "System",
@@ -18091,38 +17230,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "OutputFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": 2,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -18186,66 +17301,21 @@
]
},
{
- "Name": "ByStorageAccount",
+ "Name": "ByResourceIdSecretName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [
- "StorageAccount"
- ],
+ "Name": "ResourceId",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "AccountName": "System.String",
- "AccountResourceId": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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,
@@ -18254,13 +17324,15 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "OutputFile",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SecretName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -18276,19 +17348,21 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 2,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
- "AliasList": [],
+ "Name": "Version",
+ "AliasList": [
+ "SecretVersion"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -18300,8 +17374,8 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -18347,11 +17421,11 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByResourceIdSecretVersions",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "OutputFile",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -18368,14 +17442,40 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 2,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "Name",
+ "AliasList": [
+ "SecretName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "IncludeVersions",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -18392,7 +17492,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -18437,32 +17537,81 @@
"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": "AzKeyVaultManagedStorageAccount",
- "Name": "Get-AzKeyVaultManagedStorageAccount",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultManagedStorageAccount",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
+ "VerbName": "Import",
+ "NounName": "AzKeyVaultCertificate",
+ "Name": "Import-AzKeyVaultCertificate",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.ImportAzureKeyVaultCertificate",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByAccountName",
+ "DefaultParameterSetName": "ImportCertificateFromFile",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "AccountName": "System.String",
- "AccountResourceId": "System.String",
- "TagsTable": "System.String",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
+ "KeyId": "System.String",
+ "SecretId": "System.String",
+ "Thumbprint": "System.String",
+ "RecoveryLevel": "System.String",
"VaultName": "System.String",
"Name": "System.String",
"Version": "System.String",
@@ -18497,206 +17646,54 @@
"ReturnType": "System.Type"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
]
- },
+ }
+ ],
+ "Parameters": [
{
+ "Name": "VaultName",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
- "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
- "ActiveKeyName": "System.String",
- "AccountName": "System.String",
- "AccountResourceId": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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": []
},
- "ParameterSets": [
- "__AllParameterSets"
- ]
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
{
+ "Name": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "AccountName": "System.String",
- "AccountResourceId": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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": []
},
- "ParameterSets": [
- "__AllParameterSets"
- ]
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
- "ActiveKeyName": "System.String",
- "AccountName": "System.String",
- "AccountResourceId": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": "VaultName",
+ "Name": "FilePath",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -18711,102 +17708,33 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "InputObject",
+ "Name": "CertificateString",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "ResourceId",
+ "Name": "Password",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18816,18 +17744,15 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "AccountName",
- "AliasList": [
- "StorageAccountName",
- "Name"
- ],
+ "Name": "CertificateCollection",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Security.Cryptography.X509Certificates",
+ "Name": "System.Security.Cryptography.X509Certificates.X509Certificate2Collection",
+ "AssemblyQualifiedName": "System.Security.Cryptography.X509Certificates.X509Certificate2Collection, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18837,15 +17762,15 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "InRemovedState",
+ "Name": "Tag",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -18893,7 +17818,7 @@
],
"ParameterSets": [
{
- "Name": "ByAccountName",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
@@ -18917,14 +17842,13 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "AccountName",
+ "Name": "Name",
"AliasList": [
- "StorageAccountName",
- "Name"
+ "CertificateName"
],
"Type": {
"Namespace": "System",
@@ -18941,19 +17865,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "Tag",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -18968,7 +17892,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -19012,109 +17936,40 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "ImportCertificateFromFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "FilePath",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "Password",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19131,6 +17986,80 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": true
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -19173,11 +18102,59 @@
]
},
{
- "Name": "ByResourceId",
+ "Name": "ImportWithPrivateKeyFromString",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "CertificateString",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Password",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, 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": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -19201,12 +18178,38 @@
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Tag",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -19221,7 +18224,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -19265,16 +18268,90 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ImportWithPrivateKeyFromCollection",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "CertificateCollection",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System.Security.Cryptography.X509Certificates",
+ "Name": "System.Security.Cryptography.X509Certificates.X509Certificate2Collection",
+ "AssemblyQualifiedName": "System.Security.Cryptography.X509Certificates.X509Certificate2Collection, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": [],
@@ -19289,7 +18366,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -19336,198 +18413,29 @@
"AliasList": []
},
{
- "VerbName": "Get",
- "NounName": "AzKeyVaultManagedStorageSasDefinition",
- "Name": "Get-AzKeyVaultManagedStorageSasDefinition",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultManagedStorageSasDefinition",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
+ "VerbName": "Add",
+ "NounName": "AzKeyVaultManagedStorageAccount",
+ "Name": "Add-AzKeyVaultManagedStorageAccount",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.AddAzureKeyVaultManagedStorageAccount",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByDefinitionName",
+ "DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "Sid": "System.String",
- "AccountName": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- },
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "TemplateUri": "System.String",
- "SasType": "System.String",
- "ValidityPeriod": "System.String",
- "Sid": "System.String",
- "AccountName": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- },
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "TemplateUri": "System.String",
- "SasType": "System.String",
- "ValidityPeriod": "System.String",
- "Sid": "System.String",
- "AccountName": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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"
- ]
- },
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Sid": "System.String",
+ "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
+ "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
+ "ActiveKeyName": "System.String",
"AccountName": "System.String",
+ "AccountResourceId": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -19598,7 +18506,8 @@
{
"Name": "AccountName",
"AliasList": [
- "StorageAccountName"
+ "StorageAccountName",
+ "Name"
],
"Type": {
"Namespace": "System",
@@ -19616,60 +18525,19 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
- "AliasList": [],
+ "Name": "AccountResourceId",
+ "AliasList": [
+ "StorageAccountResourceId"
+ ],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "AccountName": "System.String",
- "AccountResourceId": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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,
@@ -19677,10 +18545,8 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "SasDefinitionName"
- ],
+ "Name": "ActiveKeyName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -19697,7 +18563,45 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InRemovedState",
+ "Name": "DisableAutoRegenerateKey",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RegenerationPeriod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Disable",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -19714,6 +18618,26 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "DefaultProfile",
"AliasList": [
@@ -19750,7 +18674,7 @@
],
"ParameterSets": [
{
- "Name": "ByDefinitionName",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
@@ -19774,13 +18698,14 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
"Name": "AccountName",
"AliasList": [
- "StorageAccountName"
+ "StorageAccountName",
+ "Name"
],
"Type": {
"Namespace": "System",
@@ -19800,13 +18725,13 @@
"Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "AccountResourceId",
"AliasList": [
- "SasDefinitionName"
+ "StorageAccountResourceId"
],
"Type": {
"Namespace": "System",
@@ -19823,152 +18748,15 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 2,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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
+ "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": "ByInputObject",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "ActiveKeyName",
"AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "AccountName": "System.String",
- "AccountResourceId": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SasDefinitionName"
- ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -19984,14 +18772,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 2,
+ "Mandatory": true,
+ "Position": 3,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "DisableAutoRegenerateKey",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -20015,31 +18803,18 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "RegenerationPeriod",
+ "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.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.TimeSpan"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -20050,23 +18825,16 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SasDefinitionName"
- ],
+ "Name": "Disable",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20076,21 +18844,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 2,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -20105,7 +18875,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -20152,73 +18922,25 @@
"AliasList": []
},
{
- "VerbName": "Remove",
+ "VerbName": "Backup",
"NounName": "AzKeyVaultManagedStorageAccount",
- "Name": "Remove-AzKeyVaultManagedStorageAccount",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultManagedStorageAccount",
+ "Name": "Backup-AzKeyVaultManagedStorageAccount",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.BackupAzureKeyVaultManagedStorageAccount",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByDefinitionName",
+ "DefaultParameterSetName": "ByStorageAccountName",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
- "ActiveKeyName": "System.String",
- "AccountName": "System.String",
- "AccountResourceId": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -20245,10 +18967,9 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AccountName",
+ "Name": "Name",
"AliasList": [
- "StorageAccountName",
- "Name"
+ "StorageAccountName"
],
"Type": {
"Namespace": "System",
@@ -20267,11 +18988,13 @@
},
{
"Name": "InputObject",
- "AliasList": [],
+ "AliasList": [
+ "StorageAccount"
+ ],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -20327,12 +19050,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InRemovedState",
+ "Name": "OutputFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -20342,7 +19065,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
"Name": "Force",
@@ -20362,24 +19085,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -20416,7 +19121,7 @@
],
"ParameterSets": [
{
- "Name": "ByDefinitionName",
+ "Name": "ByStorageAccountName",
"Parameters": [
{
"ParameterMetadata": {
@@ -20444,10 +19149,9 @@
},
{
"ParameterMetadata": {
- "Name": "AccountName",
+ "Name": "Name",
"AliasList": [
- "StorageAccountName",
- "Name"
+ "StorageAccountName"
],
"Type": {
"Namespace": "System",
@@ -20471,12 +19175,12 @@
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "OutputFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -20486,10 +19190,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -20517,30 +19221,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.4.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",
@@ -20583,16 +19263,18 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "ByStorageAccount",
"Parameters": [
{
"ParameterMetadata": {
"Name": "InputObject",
- "AliasList": [],
+ "AliasList": [
+ "StorageAccount"
+ ],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -20654,12 +19336,12 @@
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "OutputFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -20669,10 +19351,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -20702,36 +19384,12 @@
},
{
"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.4.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"
- ],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
"Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
@@ -20770,12 +19428,12 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "OutputFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -20785,10 +19443,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -20816,30 +19474,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.4.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",
@@ -20885,31 +19519,26 @@
"AliasList": []
},
{
- "VerbName": "Remove",
- "NounName": "AzKeyVaultManagedStorageSasDefinition",
- "Name": "Remove-AzKeyVaultManagedStorageSasDefinition",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultSasDefinition",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
+ "VerbName": "Get",
+ "NounName": "AzKeyVaultManagedStorageAccount",
+ "Name": "Get-AzKeyVaultManagedStorageAccount",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultManagedStorageAccount",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByDefinitionName",
+ "DefaultParameterSetName": "ByAccountName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "TemplateUri": "System.String",
- "SasType": "System.String",
- "ValidityPeriod": "System.String",
- "Sid": "System.String",
"AccountName": "System.String",
+ "AccountResourceId": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -20956,52 +19585,196 @@
"ParameterSets": [
"__AllParameterSets"
]
- }
- ],
- "Parameters": [
+ },
{
- "Name": "VaultName",
- "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
+ "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
+ "ActiveKeyName": "System.String",
+ "AccountName": "System.String",
+ "AccountResourceId": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
},
{
- "Name": "AccountName",
- "AliasList": [
- "StorageAccountName"
- ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "AccountName": "System.String",
+ "AccountResourceId": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
},
{
- "Name": "Name",
- "AliasList": [
- "SasDefinitionName"
- ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
+ "ActiveKeyName": "System.String",
+ "AccountName": "System.String",
+ "AccountResourceId": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": "VaultName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -21022,19 +19795,31 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "Sid": "System.String",
- "AccountName": "System.String",
- "TagsTable": "System.String",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
"VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21065,7 +19850,27 @@
"ReturnType": "System.Type"
}
],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -21073,12 +19878,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Force",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -21088,10 +19893,31 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "PassThru",
+ "Name": "AccountName",
+ "AliasList": [
+ "StorageAccountName",
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -21144,7 +19970,7 @@
],
"ParameterSets": [
{
- "Name": "ByDefinitionName",
+ "Name": "ByAccountName",
"Parameters": [
{
"ParameterMetadata": {
@@ -21174,33 +20000,8 @@
"ParameterMetadata": {
"Name": "AccountName",
"AliasList": [
- "StorageAccountName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "SasDefinitionName"
+ "StorageAccountName",
+ "Name"
],
"Type": {
"Namespace": "System",
@@ -21217,38 +20018,14 @@
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -21320,19 +20097,31 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "Sid": "System.String",
- "AccountName": "System.String",
- "TagsTable": "System.String",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
"VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21363,7 +20152,27 @@
"ReturnType": "System.Type"
}
],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -21377,7 +20186,7 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -21401,17 +20210,85 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceId",
+ "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": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -21469,31 +20346,7 @@
"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.4.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": "PassThru",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -21560,29 +20413,198 @@
"AliasList": []
},
{
- "VerbName": "Restore",
- "NounName": "AzKeyVaultManagedStorageAccount",
- "Name": "Restore-AzKeyVaultManagedStorageAccount",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RestoreAzureKeyVaultManagedStorageAccount",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
+ "VerbName": "Get",
+ "NounName": "AzKeyVaultManagedStorageSasDefinition",
+ "Name": "Get-AzKeyVaultManagedStorageSasDefinition",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.GetAzureKeyVaultManagedStorageSasDefinition",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByVaultName",
+ "DefaultParameterSetName": "ByDefinitionName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
- "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
- "ActiveKeyName": "System.String",
+ "Sid": "System.String",
+ "AccountName": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ },
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "TemplateUri": "System.String",
+ "SasType": "System.String",
+ "ValidityPeriod": "System.String",
+ "Sid": "System.String",
+ "AccountName": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ },
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "TemplateUri": "System.String",
+ "SasType": "System.String",
+ "ValidityPeriod": "System.String",
+ "Sid": "System.String",
+ "AccountName": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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"
+ ]
+ },
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Sid": "System.String",
"AccountName": "System.String",
- "AccountResourceId": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -21650,36 +20672,44 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "AccountName",
+ "AliasList": [
+ "StorageAccountName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "AccountName": "System.String",
+ "AccountResourceId": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21715,20 +20745,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -21738,8 +20754,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -21756,12 +20774,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputFile",
+ "Name": "InRemovedState",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21771,7 +20789,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
"Name": "DefaultProfile",
@@ -21809,7 +20827,7 @@
],
"ParameterSets": [
{
- "Name": "ByVaultName",
+ "Name": "ByDefinitionName",
"Parameters": [
{
"ParameterMetadata": {
@@ -21837,8 +20855,10 @@
},
{
"ParameterMetadata": {
- "Name": "InputFile",
- "AliasList": [],
+ "Name": "AccountName",
+ "AliasList": [
+ "StorageAccountName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -21859,6 +20879,56 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -21909,31 +20979,19 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "AccountName": "System.String",
+ "AccountResourceId": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21969,20 +21027,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -21998,8 +21042,10 @@
},
{
"ParameterMetadata": {
- "Name": "InputFile",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -22015,8 +21061,32 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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
},
@@ -22062,12 +21132,14 @@
]
},
{
- "Name": "ByResourceId",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -22083,19 +21155,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": 2,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InputFile",
+ "Name": "InRemovedState",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22105,80 +21177,12 @@
"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": "InputFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": {
@@ -22225,29 +21229,31 @@
"AliasList": []
},
{
- "VerbName": "Set",
- "NounName": "AzKeyVaultManagedStorageSasDefinition",
- "Name": "Set-AzKeyVaultManagedStorageSasDefinition",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.SetAzureKeyVaultManagedStorageSasDefinition",
+ "VerbName": "Remove",
+ "NounName": "AzKeyVaultManagedStorageAccount",
+ "Name": "Remove-AzKeyVaultManagedStorageAccount",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultManagedStorageAccount",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "Default",
+ "DefaultParameterSetName": "ByDefinitionName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "TemplateUri": "System.String",
- "SasType": "System.String",
- "ValidityPeriod": "System.String",
- "Sid": "System.String",
+ "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
+ "ActiveKeyName": "System.String",
"AccountName": "System.String",
+ "AccountResourceId": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -22283,7 +21289,13 @@
"ReturnType": "System.Type"
}
],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -22312,7 +21324,8 @@
{
"Name": "AccountName",
"AliasList": [
- "StorageAccountName"
+ "StorageAccountName",
+ "Name"
],
"Type": {
"Namespace": "System",
@@ -22335,7 +21348,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -22391,63 +21404,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "SasDefinitionName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "SasType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Disable",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -22465,14 +21422,12 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "Force",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22485,17 +21440,15 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "ValidityPeriod",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.TimeSpan"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -22540,7 +21493,7 @@
],
"ParameterSets": [
{
- "Name": "Default",
+ "Name": "ByDefinitionName",
"Parameters": [
{
"ParameterMetadata": {
@@ -22570,7 +21523,8 @@
"ParameterMetadata": {
"Name": "AccountName",
"AliasList": [
- "StorageAccountName"
+ "StorageAccountName",
+ "Name"
],
"Type": {
"Namespace": "System",
@@ -22594,81 +21548,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SasDefinitionName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "SasType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": 4,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Disable",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -22692,14 +21572,12 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "Force",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22718,17 +21596,15 @@
},
{
"ParameterMetadata": {
- "Name": "ValidityPeriod",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.TimeSpan"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -22737,7 +21613,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -22793,7 +21669,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -22855,81 +21731,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SasDefinitionName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "SasType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": 4,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Disable",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -22953,14 +21755,12 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "Force",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22979,17 +21779,15 @@
},
{
"ParameterMetadata": {
- "Name": "ValidityPeriod",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.TimeSpan"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -22998,7 +21796,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -23049,81 +21847,7 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SasDefinitionName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "SasType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": 4,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Disable",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -23147,14 +21871,12 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "Force",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23173,17 +21895,15 @@
},
{
"ParameterMetadata": {
- "Name": "ValidityPeriod",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.TimeSpan"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -23192,7 +21912,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -23242,29 +21962,31 @@
"AliasList": []
},
{
- "VerbName": "Undo",
- "NounName": "AzKeyVaultManagedStorageAccountRemoval",
- "Name": "Undo-AzKeyVaultManagedStorageAccountRemoval",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultManagedStorageAccountRemoval",
+ "VerbName": "Remove",
+ "NounName": "AzKeyVaultManagedStorageSasDefinition",
+ "Name": "Remove-AzKeyVaultManagedStorageSasDefinition",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultSasDefinition",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "Default",
+ "DefaultParameterSetName": "ByDefinitionName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
- "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
- "ActiveKeyName": "System.String",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "TemplateUri": "System.String",
+ "SasType": "System.String",
+ "ValidityPeriod": "System.String",
+ "Sid": "System.String",
"AccountName": "System.String",
- "AccountResourceId": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -23333,7 +22055,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
+ "Name": "AccountName",
"AliasList": [
"StorageAccountName"
],
@@ -23352,21 +22074,39 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Sid": "System.String",
"AccountName": "System.String",
- "AccountResourceId": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -23402,19 +22142,49 @@
"ReturnType": "System.Type"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -23451,7 +22221,7 @@
],
"ParameterSets": [
{
- "Name": "Default",
+ "Name": "ByDefinitionName",
"Parameters": [
{
"ParameterMetadata": {
@@ -23479,7 +22249,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "AccountName",
"AliasList": [
"StorageAccountName"
],
@@ -23503,6 +22273,80 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -23545,7 +22389,7 @@
]
},
{
- "Name": "InputObject",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -23553,16 +22397,14 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Sid": "System.String",
"AccountName": "System.String",
- "AccountResourceId": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -23598,13 +22440,7 @@
"ReturnType": "System.Type"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -23616,6 +22452,54 @@
"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.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -23660,6 +22544,54 @@
{
"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.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -23705,29 +22637,29 @@
"AliasList": []
},
{
- "VerbName": "Undo",
- "NounName": "AzKeyVaultManagedStorageSasDefinitionRemoval",
- "Name": "Undo-AzKeyVaultManagedStorageSasDefinitionRemoval",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultManagedStorageSasDefinitionRemoval",
+ "VerbName": "Restore",
+ "NounName": "AzKeyVaultManagedStorageAccount",
+ "Name": "Restore-AzKeyVaultManagedStorageAccount",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RestoreAzureKeyVaultManagedStorageAccount",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "Default",
+ "DefaultParameterSetName": "ByVaultName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "TemplateUri": "System.String",
- "SasType": "System.String",
- "ValidityPeriod": "System.String",
- "Sid": "System.String",
+ "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
+ "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
+ "ActiveKeyName": "System.String",
"AccountName": "System.String",
+ "AccountResourceId": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -23763,7 +22695,13 @@
"ReturnType": "System.Type"
}
],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -23789,66 +22727,36 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "AccountName",
- "AliasList": [
- "StorageAccountName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "SasDefinitionName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Sid": "System.String",
- "AccountName": "System.String",
- "TagsTable": "System.String",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
"VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23884,6 +22792,20 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
@@ -23892,6 +22814,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": "InputFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": [
@@ -23928,7 +22886,7 @@
],
"ParameterSets": [
{
- "Name": "Default",
+ "Name": "ByVaultName",
"Parameters": [
{
"ParameterMetadata": {
@@ -23956,36 +22914,8 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SasDefinitionName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "AccountName",
- "AliasList": [
- "StorageAccountName"
- ],
+ "Name": "InputFile",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -24048,30 +22978,121 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "AccountName",
- "AliasList": [
- "StorageAccountName"
- ],
+ "Name": "InputObject",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InputFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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
@@ -24118,83 +23139,104 @@
]
},
{
- "Name": "InputObject",
+ "Name": "ByResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.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": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InputFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
- "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Sid": "System.String",
- "AccountName": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "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": "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",
+ "Name": "Clear",
"Parameters": [],
- "ReturnType": "System.Type"
+ "ReturnType": "System.Void"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "AccountName",
- "AliasList": [
- "StorageAccountName"
- ],
+ "Name": "InputFile",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -24260,29 +23302,29 @@
"AliasList": []
},
{
- "VerbName": "Update",
- "NounName": "AzKeyVaultManagedStorageAccount",
- "Name": "Update-AzKeyVaultManagedStorageAccount",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultManagedStorageAccount",
+ "VerbName": "Set",
+ "NounName": "AzKeyVaultManagedStorageSasDefinition",
+ "Name": "Set-AzKeyVaultManagedStorageSasDefinition",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.SetAzureKeyVaultManagedStorageSasDefinition",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByDefinitionName",
+ "DefaultParameterSetName": "Default",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
- "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
- "ActiveKeyName": "System.String",
+ "TemplateUri": "System.String",
+ "SasType": "System.String",
+ "ValidityPeriod": "System.String",
+ "Sid": "System.String",
"AccountName": "System.String",
- "AccountResourceId": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -24318,13 +23360,7 @@
"ReturnType": "System.Type"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -24353,8 +23389,7 @@
{
"Name": "AccountName",
"AliasList": [
- "StorageAccountName",
- "Name"
+ "StorageAccountName"
],
"Type": {
"Namespace": "System",
@@ -24377,7 +23412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -24433,8 +23468,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ActiveKeyName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -24451,57 +23488,51 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AutoRegenerateKey",
+ "Name": "TemplateUri",
"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",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "RegenerationPeriod",
+ "Name": "SasType",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "Enable",
+ "Name": "Disable",
"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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -24531,15 +23562,17 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "PassThru",
+ "Name": "ValidityPeriod",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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": [],
+ "GenericTypeArguments": [
+ "System.TimeSpan"
+ ],
"Methods": [],
"Constructors": []
},
@@ -24584,7 +23617,7 @@
],
"ParameterSets": [
{
- "Name": "ByDefinitionName",
+ "Name": "Default",
"Parameters": [
{
"ParameterMetadata": {
@@ -24614,8 +23647,7 @@
"ParameterMetadata": {
"Name": "AccountName",
"AliasList": [
- "StorageAccountName",
- "Name"
+ "StorageAccountName"
],
"Type": {
"Namespace": "System",
@@ -24639,8 +23671,10 @@
},
{
"ParameterMetadata": {
- "Name": "ActiveKeyName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -24656,76 +23690,70 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AutoRegenerateKey",
+ "Name": "TemplateUri",
"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",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 3,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "RegenerationPeriod",
+ "Name": "SasType",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 4,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Enable",
+ "Name": "Disable",
"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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -24767,15 +23795,17 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "ValidityPeriod",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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": [],
+ "GenericTypeArguments": [
+ "System.TimeSpan"
+ ],
"Methods": [],
"Constructors": []
},
@@ -24784,7 +23814,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -24840,7 +23870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -24902,8 +23932,10 @@
},
{
"ParameterMetadata": {
- "Name": "ActiveKeyName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -24919,76 +23951,70 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AutoRegenerateKey",
+ "Name": "TemplateUri",
"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",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 3,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "RegenerationPeriod",
+ "Name": "SasType",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 4,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Enable",
+ "Name": "Disable",
"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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -25030,15 +24056,17 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "ValidityPeriod",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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": [],
+ "GenericTypeArguments": [
+ "System.TimeSpan"
+ ],
"Methods": [],
"Constructors": []
},
@@ -25047,7 +24075,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -25098,8 +24126,10 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ActiveKeyName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -25115,76 +24145,70 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AutoRegenerateKey",
+ "Name": "TemplateUri",
"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",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 3,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "RegenerationPeriod",
+ "Name": "SasType",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 4,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Enable",
+ "Name": "Disable",
"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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -25226,15 +24250,17 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "ValidityPeriod",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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": [],
+ "GenericTypeArguments": [
+ "System.TimeSpan"
+ ],
"Methods": [],
"Constructors": []
},
@@ -25243,7 +24269,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -25293,20 +24319,20 @@
"AliasList": []
},
{
- "VerbName": "Update",
- "NounName": "AzKeyVaultManagedStorageAccountKey",
- "Name": "Update-AzKeyVaultManagedStorageAccountKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultManagedStorageAccountKey",
+ "VerbName": "Undo",
+ "NounName": "AzKeyVaultManagedStorageAccountRemoval",
+ "Name": "Undo-AzKeyVaultManagedStorageAccountRemoval",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultManagedStorageAccountRemoval",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByDefinitionName",
+ "DefaultParameterSetName": "Default",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -25384,10 +24410,9 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AccountName",
+ "Name": "Name",
"AliasList": [
- "StorageAccountName",
- "Name"
+ "StorageAccountName"
],
"Type": {
"Namespace": "System",
@@ -25409,12 +24434,14 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
"AccountName": "System.String",
"AccountResourceId": "System.String",
"TagsTable": "System.String",
@@ -25465,60 +24492,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "KeyName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -25555,7 +24528,7 @@
],
"ParameterSets": [
{
- "Name": "ByDefinitionName",
+ "Name": "Default",
"Parameters": [
{
"ParameterMetadata": {
@@ -25583,10 +24556,9 @@
},
{
"ParameterMetadata": {
- "Name": "AccountName",
+ "Name": "Name",
"AliasList": [
- "StorageAccountName",
- "Name"
+ "StorageAccountName"
],
"Type": {
"Namespace": "System",
@@ -25608,78 +24580,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "KeyName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.4.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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -25722,7 +24622,7 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "InputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -25730,12 +24630,14 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
"AccountName": "System.String",
"AccountResourceId": "System.String",
"TagsTable": "System.String",
@@ -25791,78 +24693,6 @@
"ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "KeyName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.4.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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -25907,78 +24737,6 @@
{
"Name": "__AllParameterSets",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "KeyName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.4.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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -26024,43 +24782,34 @@
"AliasList": []
},
{
- "VerbName": "New",
- "NounName": "AzKeyVault",
- "Name": "New-AzKeyVault",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.NewAzureKeyVault",
+ "VerbName": "Undo",
+ "NounName": "AzKeyVaultManagedStorageSasDefinitionRemoval",
+ "Name": "Undo-AzKeyVaultManagedStorageSasDefinitionRemoval",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultManagedStorageSasDefinitionRemoval",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "__AllParameterSets",
+ "DefaultParameterSetName": "Default",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "TemplateUri": "System.String",
+ "SasType": "System.String",
+ "ValidityPeriod": "System.String",
+ "Sid": "System.String",
+ "AccountName": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26091,27 +24840,7 @@
"ReturnType": "System.Type"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -26120,27 +24849,7 @@
],
"Parameters": [
{
- "Name": "Name",
- "AliasList": [
- "VaultName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -26158,8 +24867,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Location",
- "AliasList": [],
+ "Name": "AccountName",
+ "AliasList": [
+ "StorageAccountName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -26176,116 +24887,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "EnabledForDeployment",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EnabledForTemplateDeployment",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EnabledForDiskEncryption",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EnablePurgeProtection",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EnableRbacAuthorization",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "SoftDeleteRetentionInDays",
- "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": 7,
- "ValidateRangeMax": 90,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Sku",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -26299,42 +24904,28 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "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
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "NetworkRuleSet",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
- "DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
- "IpAddressRanges": "System.Collections.Generic.IList`1[System.String]",
- "VirtualNetworkResourceIds": "System.Collections.Generic.IList`1[System.String]",
- "IpAddressRangesText": "System.String",
- "VirtualNetworkResourceIdsText": "System.String"
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Sid": "System.String",
+ "AccountName": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26370,35 +24961,13 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "defaultAction",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "bypass",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "ipAddressRanges",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "virtualNetworkResourceId",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
"Name": "DefaultProfile",
@@ -26436,14 +25005,12 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "Default",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "VaultName"
- ],
+ "Name": "VaultName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -26462,12 +25029,14 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SasDefinitionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -26484,14 +25053,16 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 1,
+ "Position": 2,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
+ "Name": "AccountName",
+ "AliasList": [
+ "StorageAccountName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -26508,22 +25079,37 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 2,
+ "Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnabledForDeployment",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -26534,16 +25120,23 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "EnabledForTemplateDeployment",
- "AliasList": [],
+ "Name": "AccountName",
+ "AliasList": [
+ "StorageAccountName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -26553,147 +25146,40 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "EnabledForDiskEncryption",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "EnablePurgeProtection",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "EnableRbacAuthorization",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "SoftDeleteRetentionInDays",
- "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": 7,
- "ValidateRangeMax": 90,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Sku",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Tag",
+ "Name": "DefaultProfile",
"AliasList": [
- "Tags"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"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": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -26704,23 +25190,34 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "InputObject",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "NetworkRuleSet",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
- "DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
- "IpAddressRanges": "System.Collections.Generic.IList`1[System.String]",
- "VirtualNetworkResourceIds": "System.Collections.Generic.IList`1[System.String]",
- "IpAddressRangesText": "System.String",
- "VirtualNetworkResourceIdsText": "System.String"
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Sid": "System.String",
+ "AccountName": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26756,38 +25253,42 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "defaultAction",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "bypass",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "ipAddressRanges",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "virtualNetworkResourceId",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AccountName",
+ "AliasList": [
+ "StorageAccountName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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
},
@@ -26836,51 +25337,38 @@
"AliasList": []
},
{
- "VerbName": "New",
- "NounName": "AzKeyVaultCertificatePolicy",
- "Name": "New-AzKeyVaultCertificatePolicy",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.NewAzureKeyVaultCertificatePolicy",
+ "VerbName": "Update",
+ "NounName": "AzKeyVaultManagedStorageAccount",
+ "Name": "Update-AzKeyVaultManagedStorageAccount",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultManagedStorageAccount",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "SubjectName",
+ "DefaultParameterSetName": "ByDefinitionName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DnsNames": "System.Collections.Generic.List`1[System.String]",
- "KeyUsage": "System.Collections.Generic.List`1[System.String]",
- "Ekus": "System.Collections.Generic.List`1[System.String]",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "CertificateTransparency": "System.Nullable`1[System.Boolean]",
- "Exportable": "System.Nullable`1[System.Boolean]",
- "ReuseKeyOnRenewal": "System.Nullable`1[System.Boolean]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "EmailAtPercentageLifetime": "System.Nullable`1[System.Int32]",
- "EmailAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
- "RenewAtPercentageLifetime": "System.Nullable`1[System.Int32]",
- "RenewAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
- "ValidityInMonths": "System.Nullable`1[System.Int32]",
- "KeySize": "System.Nullable`1[System.Int32]",
- "IssuerName": "System.String",
- "SubjectName": "System.String",
- "Curve": "System.String",
- "Kty": "System.String",
- "CertificateType": "System.String",
- "SecretContentType": "System.String"
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
+ "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
+ "ActiveKeyName": "System.String",
+ "AccountName": "System.String",
+ "AccountResourceId": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
- {
- "Name": "Validate",
- "Parameters": [],
- "ReturnType": "System.Void"
- },
{
"Name": "ToString",
"Parameters": [],
@@ -26912,88 +25400,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "dnsNames",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keyUsages",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "ekus",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "enabled",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "issuerName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "certificateType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "renewAtNumberOfDaysBeforeExpiry",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "renewAtPercentageLifetime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "emailAtNumberOfDaysBeforeExpiry",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "emailAtPercentageLifetime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "reuseKeyOnRenewal",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "secretContentType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "subjectName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "validityInMonths",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keyType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keySize",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "curve",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "exportable",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "certificateTransparency",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -27004,7 +25410,7 @@
],
"Parameters": [
{
- "Name": "IssuerName",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -27019,11 +25425,14 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "SubjectName",
- "AliasList": [],
+ "Name": "AccountName",
+ "AliasList": [
+ "StorageAccountName",
+ "Name"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -27037,98 +25446,156 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "DnsName",
- "AliasList": [
- "DnsNames"
- ],
+ "Name": "InputObject",
+ "AliasList": [],
"Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "AccountName": "System.String",
+ "AccountResourceId": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
- "GenericTypeArguments": [
- "System.String"
+ "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": "ActiveKeyName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "RenewAtNumberOfDaysBeforeExpiry",
+ "Name": "AutoRegenerateKey",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.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.Int32"
+ "System.Boolean"
],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 1,
- "ValidateRangeMax": 2147483647,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "RenewAtPercentageLifetime",
+ "Name": "RegenerationPeriod",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.Int32"
+ "System.TimeSpan"
],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 0,
- "ValidateRangeMax": 99,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "SecretContentType",
+ "Name": "Enable",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "application/x-pkcs12",
- "application/x-pem-file"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "ReuseKeyOnRenewal",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -27141,7 +25608,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Disabled",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -27158,234 +25625,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- {
- "Name": "KeyUsage",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "Ekus",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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.String"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ValidityInMonths",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "CertificateType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "EmailAtNumberOfDaysBeforeExpiry",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EmailAtPercentageLifetime",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "KeyType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "RSA",
- "RSA-HSM",
- "EC",
- "EC-HSM"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "KeySize",
- "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": [
- "2048",
- "3072",
- "4096",
- "256",
- "384",
- "521"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "KeyNotExportable",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "CertificateTransparency",
- "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": false
- },
- {
- "Name": "Curve",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "P-256",
- "P-384",
- "P-521",
- "P-256K",
- "SECP256K1"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -27422,11 +25661,11 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "ByDefinitionName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "IssuerName",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -27441,83 +25680,81 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "RenewAtNumberOfDaysBeforeExpiry",
- "AliasList": [],
+ "Name": "AccountName",
+ "AliasList": [
+ "StorageAccountName",
+ "Name"
+ ],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 1,
- "ValidateRangeMax": 2147483647,
- "ValidateNotNullOrEmpty": false
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "RenewAtPercentageLifetime",
+ "Name": "ActiveKeyName",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 0,
- "ValidateRangeMax": 99,
- "ValidateNotNullOrEmpty": false
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SecretContentType",
+ "Name": "AutoRegenerateKey",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "application/x-pkcs12",
- "application/x-pem-file"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -27525,19 +25762,21 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ReuseKeyOnRenewal",
+ "Name": "RegenerationPeriod",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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": [],
+ "GenericTypeArguments": [
+ "System.TimeSpan"
+ ],
"Methods": [],
"Constructors": []
},
@@ -27549,19 +25788,21 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Disabled",
+ "Name": "Enable",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
@@ -27573,21 +25814,21 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyUsage",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], 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": null,
- "GenericTypeArguments": [
- "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -27599,21 +25840,19 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Ekus",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.String"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -27625,22 +25864,35 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ValidityInMonths",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": {},
+ "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": [
- "System.Int32"
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -27651,11 +25903,83 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "AccountName": "System.String",
+ "AccountResourceId": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CertificateType",
+ "Name": "ActiveKeyName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -27670,25 +25994,25 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EmailAtNumberOfDaysBeforeExpiry",
+ "Name": "AutoRegenerateKey",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.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.Int32"
+ "System.Boolean"
],
"Methods": [],
"Constructors": []
@@ -27701,20 +26025,20 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EmailAtPercentageLifetime",
+ "Name": "RegenerationPeriod",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.Int32"
+ "System.TimeSpan"
],
"Methods": [],
"Constructors": []
@@ -27727,28 +26051,25 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyType",
+ "Name": "Enable",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "RSA",
- "RSA-HSM",
- "EC",
- "EC-HSM"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -27756,30 +26077,25 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeySize",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, 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": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "2048",
- "3072",
- "4096",
- "256",
- "384",
- "521"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -27787,11 +26103,11 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyNotExportable",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -27811,63 +26127,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "CertificateTransparency",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Curve",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "P-256",
- "P-384",
- "P-521",
- "P-256K",
- "SECP256K1"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -27911,11 +26171,11 @@
]
},
{
- "Name": "SubjectName",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "SubjectName",
+ "Name": "ActiveKeyName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -27930,24 +26190,26 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IssuerName",
+ "Name": "AutoRegenerateKey",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
@@ -27956,81 +26218,80 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "RenewAtNumberOfDaysBeforeExpiry",
+ "Name": "RegenerationPeriod",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.Int32"
+ "System.TimeSpan"
],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 1,
- "ValidateRangeMax": 2147483647,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "RenewAtPercentageLifetime",
+ "Name": "Enable",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.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.Int32"
+ "System.Boolean"
],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 0,
- "ValidateRangeMax": 99,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SecretContentType",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"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": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "application/x-pkcs12",
- "application/x-pem-file"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -28038,11 +26299,11 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ReuseKeyOnRenewal",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -28062,20 +26323,35 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Disabled",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -28086,225 +26362,356 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzKeyVaultManagedStorageAccountKey",
+ "Name": "Update-AzKeyVaultManagedStorageAccountKey",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultManagedStorageAccountKey",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByDefinitionName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "AutoRegenerateKey": "System.Nullable`1[System.Boolean]",
+ "RegenerationPeriod": "System.Nullable`1[System.TimeSpan]",
+ "ActiveKeyName": "System.String",
+ "AccountName": "System.String",
+ "AccountResourceId": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AccountName",
+ "AliasList": [
+ "StorageAccountName",
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "AccountName": "System.String",
+ "AccountResourceId": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "KeyName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByDefinitionName",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "KeyUsage",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Ekus",
- "AliasList": [],
+ "Name": "AccountName",
+ "AliasList": [
+ "StorageAccountName",
+ "Name"
+ ],
"Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.String"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ValidityInMonths",
+ "Name": "KeyName",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "CertificateType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "EmailAtNumberOfDaysBeforeExpiry",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "EmailAtPercentageLifetime",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "KeyType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "RSA",
- "RSA-HSM",
- "EC",
- "EC-HSM"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "KeySize",
- "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": [
- "2048",
- "3072",
- "4096",
- "256",
- "384",
- "521"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 2,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyNotExportable",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -28324,55 +26731,23 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "CertificateTransparency",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Curve",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "P-256",
- "P-384",
- "P-521",
- "P-256K",
- "SECP256K1"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -28380,7 +26755,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -28424,63 +26799,78 @@
]
},
{
- "Name": "DNSNames",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "SubjectName",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
+ "TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "AccountName": "System.String",
+ "AccountResourceId": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "DnsName",
- "AliasList": [
- "DnsNames"
- ],
- "Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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.String"
+ "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"
+ }
],
- "Methods": [],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IssuerName",
+ "Name": "KeyName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -28495,95 +26885,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "RenewAtNumberOfDaysBeforeExpiry",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": 1,
- "ValidateRangeMax": 2147483647,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "RenewAtPercentageLifetime",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": 0,
- "ValidateRangeMax": 99,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "SecretContentType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "application/x-pkcs12",
- "application/x-pem-file"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
+ "Position": 2,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ReuseKeyOnRenewal",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -28603,11 +26914,11 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Disabled",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -28627,22 +26938,35 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyUsage",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [
- "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -28653,47 +26977,48 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Ekus",
+ "Name": "KeyName",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.String"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 2,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ValidityInMonths",
+ "Name": "Force",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -28705,16 +27030,16 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CertificateType",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28729,226 +27054,34 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EmailAtNumberOfDaysBeforeExpiry",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": {},
+ "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": [
- "System.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "EmailAtPercentageLifetime",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "KeyType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "RSA",
- "RSA-HSM",
- "EC",
- "EC-HSM"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "KeySize",
- "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": [
- "2048",
- "3072",
- "4096",
- "256",
- "384",
- "521"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "KeyNotExportable",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "CertificateTransparency",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Curve",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "P-256",
- "P-384",
- "P-521",
- "P-256K",
- "SECP256K1"
- ],
- "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"
- }
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
"Constructors": []
},
@@ -28968,59 +27101,20 @@
"AliasList": []
},
{
- "VerbName": "Remove",
+ "VerbName": "New",
"NounName": "AzKeyVault",
- "Name": "Remove-AzKeyVault",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVault",
+ "Name": "New-AzKeyVault",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.NewAzureKeyVault",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByAvailableVault",
+ "DefaultParameterSetName": "__AllParameterSets",
"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": "VaultName",
- "AliasList": [
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -29096,14 +27190,17 @@
}
]
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
{
- "Name": "ResourceId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "VaultName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -29156,7 +27253,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InRemovedState",
+ "Name": "EnabledForDeployment",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -29174,7 +27271,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Force",
+ "Name": "EnabledForTemplateDeployment",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -29192,7 +27289,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "AsJob",
+ "Name": "EnabledForDiskEncryption",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -29210,7 +27307,25 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "PassThru",
+ "Name": "EnablePurgeProtection",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableRbacAuthorization",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -29227,6 +27342,141 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "SoftDeleteRetentionInDays",
+ "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": 7,
+ "ValidateRangeMax": 90,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Sku",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "NetworkRuleSet",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
+ "DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
+ "IpAddressRanges": "System.Collections.Generic.IList`1[System.String]",
+ "VirtualNetworkResourceIds": "System.Collections.Generic.IList`1[System.String]",
+ "IpAddressRangesText": "System.String",
+ "VirtualNetworkResourceIdsText": "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": "defaultAction",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "bypass",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "ipAddressRanges",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "virtualNetworkResourceId",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -29263,13 +27513,13 @@
],
"ParameterSets": [
{
- "Name": "ByAvailableVault",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "Name",
"AliasList": [
- "Name"
+ "VaultName"
],
"Type": {
"Namespace": "System",
@@ -29289,7 +27539,7 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -29310,10 +27560,10 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -29334,14 +27584,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 2,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "EnabledForDeployment",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -29361,11 +27611,11 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "EnabledForTemplateDeployment",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -29385,11 +27635,11 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "EnabledForDiskEncryption",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -29409,35 +27659,20 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "EnablePurgeProtection",
+ "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.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -29449,22 +27684,15 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByDeletedVault",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "VaultName",
- "AliasList": [
- "Name"
- ],
+ "Name": "EnableRbacAuthorization",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29474,21 +27702,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "SoftDeleteRetentionInDays",
"AliasList": [],
"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": [],
@@ -29496,23 +27724,23 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
+ "ValidateRangeMin": 7,
+ "ValidateRangeMax": 90,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "Sku",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -29524,67 +27752,21 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "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.4.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -29599,83 +27781,23 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": 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": "InputObjectByAvailableVault",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "NetworkRuleSet",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
+ "DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
+ "IpAddressRanges": "System.Collections.Generic.IList`1[System.String]",
+ "VirtualNetworkResourceIds": "System.Collections.Generic.IList`1[System.String]",
+ "IpAddressRangesText": "System.String",
+ "VirtualNetworkResourceIdsText": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29717,220 +27839,19 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "vault",
+ "Name": "defaultAction",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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.4.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "InputObjectByDeletedVault",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
+ "Name": "bypass",
"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": "vault",
+ "Name": "ipAddressRanges",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
- "Name": "adClient",
+ "Name": "virtualNetworkResourceId",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -29940,102 +27861,6 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -30083,520 +27908,56 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzKeyVaultCertificatePolicy",
+ "Name": "New-AzKeyVaultCertificatePolicy",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.NewAzureKeyVaultCertificatePolicy",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "SubjectName",
+ "OutputTypes": [
{
- "Name": "ResourceIdByAvailableVault",
- "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": "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": false,
- "Position": 1,
- "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.4.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ResourceIdByDeletedVault",
- "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": "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": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AzKeyVaultAccessPolicy",
- "Name": "Remove-AzKeyVaultAccessPolicy",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultAccessPolicy",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByUserPrincipalName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DnsNames": "System.Collections.Generic.List`1[System.String]",
+ "KeyUsage": "System.Collections.Generic.List`1[System.String]",
+ "Ekus": "System.Collections.Generic.List`1[System.String]",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "CertificateTransparency": "System.Nullable`1[System.Boolean]",
+ "Exportable": "System.Nullable`1[System.Boolean]",
+ "ReuseKeyOnRenewal": "System.Nullable`1[System.Boolean]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "EmailAtPercentageLifetime": "System.Nullable`1[System.Int32]",
+ "EmailAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
+ "RenewAtPercentageLifetime": "System.Nullable`1[System.Int32]",
+ "RenewAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
+ "ValidityInMonths": "System.Nullable`1[System.Int32]",
+ "KeySize": "System.Nullable`1[System.Int32]",
+ "IssuerName": "System.String",
+ "SubjectName": "System.String",
+ "Curve": "System.String",
+ "Kty": "System.String",
+ "CertificateType": "System.String",
+ "SecretContentType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -30634,43 +27995,111 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "vault",
+ "Name": "dnsNames",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
- "Name": "adClient",
+ "Name": "keyUsages",
"Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "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": "ekus",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "enabled",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "issuerName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "certificateType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "renewAtNumberOfDaysBeforeExpiry",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "renewAtPercentageLifetime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "emailAtNumberOfDaysBeforeExpiry",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "emailAtPercentageLifetime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "reuseKeyOnRenewal",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "secretContentType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "subjectName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "validityInMonths",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keyType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keySize",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "curve",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "exportable",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "certificateTransparency",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "IssuerName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "ResourceGroupName",
+ "Name": "SubjectName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -30685,97 +28114,72 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "InputObject",
- "AliasList": [],
+ "Name": "DnsName",
+ "AliasList": [
+ "DnsNames"
+ ],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
- },
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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": [],
- "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"
- }
+ "GenericTypeArguments": [
+ "System.String"
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "ResourceId",
+ "Name": "RenewAtNumberOfDaysBeforeExpiry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RenewAtPercentageLifetime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 0,
+ "ValidateRangeMax": 99,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SecretContentType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -30787,20 +28191,39 @@
"Methods": [],
"Constructors": []
},
+ "ValidateSet": [
+ "application/x-pkcs12",
+ "application/x-pem-file"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ReuseKeyOnRenewal",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "ServicePrincipalName",
- "AliasList": [
- "SPN"
- ],
+ "Name": "Disabled",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -30810,30 +28233,70 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "UserPrincipalName",
- "AliasList": [
- "UPN"
- ],
+ "Name": "KeyUsage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Ekus",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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.String"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ValidityInMonths",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "ObjectId",
+ "Name": "CertificateType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -30848,37 +28311,39 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "EmailAddress",
+ "Name": "EmailAtNumberOfDaysBeforeExpiry",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "ApplicationId",
+ "Name": "EmailAtPercentageLifetime",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Guid]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Guid"
+ "System.Int32"
],
"Methods": [],
"Constructors": []
@@ -30889,43 +28354,55 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "EnabledForDeployment",
+ "Name": "KeyType",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "RSA",
+ "RSA-HSM",
+ "EC",
+ "EC-HSM"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "EnabledForTemplateDeployment",
+ "Name": "KeySize",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "2048",
+ "3072",
+ "4096",
+ "256",
+ "384",
+ "521"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "EnabledForDiskEncryption",
+ "Name": "KeyNotExportable",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -30943,15 +28420,17 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "PassThru",
+ "Name": "CertificateTransparency",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
@@ -30960,6 +28439,30 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "Curve",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "P-256",
+ "P-384",
+ "P-521",
+ "P-256K",
+ "SECP256K1"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -30996,11 +28499,11 @@
],
"ParameterSets": [
{
- "Name": "ByObjectId",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "IssuerName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31015,40 +28518,68 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "RenewAtNumberOfDaysBeforeExpiry",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ObjectId",
+ "Name": "RenewAtPercentageLifetime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 0,
+ "ValidateRangeMax": 99,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SecretContentType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31060,29 +28591,30 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "application/x-pkcs12",
+ "application/x-pem-file"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ApplicationId",
+ "Name": "ReuseKeyOnRenewal",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Guid]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Guid"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -31094,11 +28626,11 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Disabled",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -31118,35 +28650,22 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "KeyUsage",
+ "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.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -31157,67 +28676,64 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByServicePrincipalName",
- "Parameters": [
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "Ekus",
"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.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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": [],
+ "GenericTypeArguments": [
+ "System.String"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "ValidityInMonths",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ServicePrincipalName",
- "AliasList": [
- "SPN"
- ],
+ "Name": "CertificateType",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -31231,24 +28747,26 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "EmailAtNumberOfDaysBeforeExpiry",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -31260,35 +28778,22 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "EmailAtPercentageLifetime",
+ "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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -31299,16 +28804,11 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByUserPrincipalName",
- "Parameters": [
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "KeyType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31320,24 +28820,60 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "RSA",
+ "RSA-HSM",
+ "EC",
+ "EC-HSM"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "KeySize",
"AliasList": [],
"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": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "2048",
+ "3072",
+ "4096",
+ "256",
+ "384",
+ "521"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeyNotExportable",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31347,54 +28883,60 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "UserPrincipalName",
- "AliasList": [
- "UPN"
- ],
+ "Name": "CertificateTransparency",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Curve",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "P-256",
+ "P-384",
+ "P-521",
+ "P-256K",
+ "SECP256K1"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -31402,7 +28944,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -31446,11 +28988,11 @@
]
},
{
- "Name": "ByEmail",
+ "Name": "SubjectName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "SubjectName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31465,16 +29007,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
- "Position": 0,
+ "Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "IssuerName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31489,16 +29031,68 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RenewAtNumberOfDaysBeforeExpiry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "EmailAddress",
+ "Name": "RenewAtPercentageLifetime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 0,
+ "ValidateRangeMax": 99,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SecretContentType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31510,19 +29104,22 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "application/x-pkcs12",
+ "application/x-pem-file"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "ReuseKeyOnRenewal",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -31542,35 +29139,20 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "Disabled",
+ "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.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -31581,72 +29163,73 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ForVault",
- "Parameters": [
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "KeyUsage",
"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.Generic",
+ "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [],
+ "GenericTypeArguments": [
+ "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "Ekus",
"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.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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": [],
+ "GenericTypeArguments": [
+ "System.String"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "EnabledForDeployment",
+ "Name": "ValidityInMonths",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -31658,16 +29241,16 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "EnabledForTemplateDeployment",
+ "Name": "CertificateType",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -31682,19 +29265,21 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "EnabledForDiskEncryption",
+ "Name": "EmailAtNumberOfDaysBeforeExpiry",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -31706,19 +29291,21 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "EmailAtPercentageLifetime",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -31730,38 +29317,28 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "KeyType",
+ "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": [],
+ "ValidateSet": [
+ "RSA",
+ "RSA-HSM",
+ "EC",
+ "EC-HSM"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -31769,114 +29346,47 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "InputObjectByObjectId",
- "Parameters": [
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "KeySize",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
- },
+ "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": [
- {
- "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "2048",
+ "3072",
+ "4096",
+ "256",
+ "384",
+ "521"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ObjectId",
+ "Name": "KeyNotExportable",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31886,25 +29396,25 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ApplicationId",
+ "Name": "CertificateTransparency",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Guid]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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.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.Guid"
+ "System.Boolean"
],
"Methods": [],
"Constructors": []
@@ -31917,23 +29427,29 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Curve",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "P-256",
+ "P-384",
+ "P-521",
+ "P-256K",
+ "SECP256K1"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -31941,7 +29457,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -31985,107 +29501,64 @@
]
},
{
- "Name": "InputObjectByServicePrincipalName",
+ "Name": "DNSNames",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "SubjectName",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ServicePrincipalName",
+ "Name": "DnsName",
"AliasList": [
- "SPN"
+ "DnsNames"
],
+ "Type": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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.String"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IssuerName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32099,184 +29572,100 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "RenewAtNumberOfDaysBeforeExpiry",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "RenewAtPercentageLifetime",
+ "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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
+ "ValidateRangeMin": 0,
+ "ValidateRangeMax": 99,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "InputObjectByUserPrincipalName",
- "Parameters": [
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "SecretContentType",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "application/x-pkcs12",
+ "application/x-pem-file"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "UserPrincipalName",
- "AliasList": [
- "UPN"
- ],
+ "Name": "ReuseKeyOnRenewal",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32286,16 +29675,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Disabled",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -32315,35 +29704,22 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "KeyUsage",
+ "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.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -32354,141 +29730,21 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "InputObjectByEmail",
- "Parameters": [
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "Ekus",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
- },
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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": [],
- "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"
- }
+ "GenericTypeArguments": [
+ "System.String"
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "EmailAddress",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -32500,156 +29756,21 @@
"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": "InputObjectForVault",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "EnabledForDeployment",
+ "Name": "ValidityInMonths",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -32661,16 +29782,16 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "EnabledForTemplateDeployment",
+ "Name": "CertificateType",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -32685,19 +29806,21 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "EnabledForDiskEncryption",
+ "Name": "EmailAtNumberOfDaysBeforeExpiry",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -32709,59 +29832,22 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "EmailAtPercentageLifetime",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "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"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -32772,40 +29858,11 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ResourceIdByObjectId",
- "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": "ObjectId",
+ "Name": "KeyType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -32817,33 +29874,43 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "RSA",
+ "RSA-HSM",
+ "EC",
+ "EC-HSM"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ApplicationId",
+ "Name": "KeySize",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Guid]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Guid"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "2048",
+ "3072",
+ "4096",
+ "256",
+ "384",
+ "521"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -32851,11 +29918,11 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "KeyNotExportable",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -32875,82 +29942,38 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": 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": "ResourceIdByServicePrincipalName",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "CertificateTransparency",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ServicePrincipalName",
- "AliasList": [
- "SPN"
- ],
+ "Name": "Curve",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32961,31 +29984,13 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
+ "ValidateSet": [
+ "P-256",
+ "P-384",
+ "P-521",
+ "P-256K",
+ "SECP256K1"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -32993,7 +29998,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -33035,39 +30040,313 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzKeyVault",
+ "Name": "Remove-AzKeyVault",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVault",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByAvailableVault",
+ "OutputTypes": [
{
- "Name": "ResourceIdByUserPrincipalName",
- "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
+ "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": "VaultName",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ {
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "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": 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": "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": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByAvailableVault",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "UserPrincipalName",
+ "Name": "VaultName",
"AliasList": [
- "UPN"
+ "Name"
],
"Type": {
"Namespace": "System",
@@ -33085,18 +30364,18 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -33106,65 +30385,45 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "Location",
+ "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,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ResourceIdByEmail",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33174,21 +30433,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EmailAddress",
+ "Name": "AsJob",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33198,9 +30457,9 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -33271,12 +30530,14 @@
]
},
{
- "Name": "ResourceIdForVault",
+ "Name": "ByDeletedVault",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
- "AliasList": [],
+ "Name": "VaultName",
+ "AliasList": [
+ "Name"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33295,16 +30556,16 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnabledForDeployment",
+ "Name": "Location",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -33314,16 +30575,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnabledForTemplateDeployment",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -33340,14 +30601,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnabledForDiskEncryption",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -33371,7 +30632,7 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -33393,50 +30654,6 @@
"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",
@@ -33501,283 +30718,92 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzKeyVaultCertificate",
- "Name": "Remove-AzKeyVaultCertificate",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultCertificate",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByVaultNameAndName",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
- "RecoveryLevel": "System.String",
- "Thumbprint": "System.String",
- "SecretId": "System.String",
- "KeyId": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "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": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByVaultNameAndName",
+ "Name": "InputObjectByAvailableVault",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -33786,36 +30812,12 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "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": 1,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -33839,7 +30841,7 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -33927,7 +30929,7 @@
]
},
{
- "Name": "ByObject",
+ "Name": "InputObjectByDeletedVault",
"Parameters": [
{
"ParameterMetadata": {
@@ -33935,19 +30937,31 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
"VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33983,6 +30997,20 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
@@ -34015,7 +31043,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -34044,6 +31072,30 @@
"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.4.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": "PassThru",
@@ -34110,11 +31162,59 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ResourceIdByAvailableVault",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "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": "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": false,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -34138,7 +31238,7 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -34224,272 +31324,37 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzKeyVaultCertificateContact",
- "Name": "Remove-AzKeyVaultCertificateContact",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultCertificateContact",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByName",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Email": "System.String",
- "VaultName": "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": "ResourceIdByDeletedVault",
+ "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
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "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": true
- },
- {
- "Name": "EmailAddress",
- "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.4.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]"
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "ByName",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -34507,20 +31372,20 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EmailAddress",
+ "Name": "InRemovedState",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -34528,16 +31393,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -34561,31 +31426,16 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "AsJob",
+ "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.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -34597,128 +31447,6 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByObject",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "EmailAddress",
- "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": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -34786,59 +31514,11 @@
]
},
{
- "Name": "ByResourceId",
+ "Name": "__AllParameterSets",
"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": "EmailAddress",
- "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": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -34862,31 +31542,16 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "AsJob",
+ "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.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -34898,35 +31563,6 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "EmailAddress",
- "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": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -34998,28 +31634,44 @@
},
{
"VerbName": "Remove",
- "NounName": "AzKeyVaultCertificateIssuer",
- "Name": "Remove-AzKeyVaultCertificateIssuer",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultCertificateIssuer",
+ "NounName": "AzKeyVaultAccessPolicy",
+ "Name": "Remove-AzKeyVaultAccessPolicy",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultAccessPolicy",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "Default",
+ "DefaultParameterSetName": "ByUserPrincipalName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "OrganizationDetails": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
- "ApiKey": "System.Security.SecureString",
- "AccountId": "System.String",
- "Name": "System.String",
- "IssuerProvider": "System.String",
- "VaultName": "System.String"
- },
- "ElementType": null,
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [
{
@@ -35053,6 +31705,20 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
@@ -35081,10 +31747,8 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "IssuerName"
- ],
+ "Name": "ResourceGroupName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -35105,12 +31769,31 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Name": "System.String",
- "IssuerProvider": "System.String",
- "VaultName": "System.String"
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -35146,6 +31829,20 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
@@ -35155,7 +31852,157 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Force",
+ "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": "ServicePrincipalName",
+ "AliasList": [
+ "SPN"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "UserPrincipalName",
+ "AliasList": [
+ "UPN"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ObjectId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "EmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ApplicationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Guid]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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.Guid"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnabledForDeployment",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnabledForTemplateDeployment",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnabledForDiskEncryption",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -35226,7 +32073,7 @@
],
"ParameterSets": [
{
- "Name": "Default",
+ "Name": "ByObjectId",
"Parameters": [
{
"ParameterMetadata": {
@@ -35254,10 +32101,8 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IssuerName"
- ],
+ "Name": "ResourceGroupName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -35273,19 +32118,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "ObjectId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -35295,6 +32140,32 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApplicationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Guid]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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.Guid"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -35368,57 +32239,21 @@
]
},
{
- "Name": "InputObject",
+ "Name": "ByServicePrincipalName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "IssuerProvider": "System.String",
- "VaultName": "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,
@@ -35427,17 +32262,17 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -35447,9 +32282,35 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ServicePrincipalName",
+ "AliasList": [
+ "SPN"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
@@ -35520,16 +32381,16 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByUserPrincipalName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -35539,9 +32400,59 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
+ },
+ "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": true
},
"Mandatory": false,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "UserPrincipalName",
+ "AliasList": [
+ "UPN"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
@@ -35610,275 +32521,28 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzKeyVaultCertificateOperation",
- "Name": "Remove-AzKeyVaultCertificateOperation",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultCertificateOperation",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "__AllParameterSets",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "CancellationRequested": "System.Nullable`1[System.Boolean]",
- "Id": "System.String",
- "Status": "System.String",
- "StatusDetails": "System.String",
- "RequestId": "System.String",
- "Target": "System.String",
- "Issuer": "System.String",
- "CertificateSigningRequest": "System.String",
- "ErrorCode": "System.String",
- "ErrorMessage": "System.String",
- "Name": "System.String",
- "VaultName": "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": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "CertificateName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "CancellationRequested": "System.Nullable`1[System.Boolean]",
- "Id": "System.String",
- "Status": "System.String",
- "StatusDetails": "System.String",
- "RequestId": "System.String",
- "Target": "System.String",
- "Issuer": "System.String",
- "CertificateSigningRequest": "System.String",
- "ErrorCode": "System.String",
- "ErrorMessage": "System.String",
- "Name": "System.String",
- "VaultName": "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": "Force",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Default",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "ByEmail",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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,
@@ -35887,10 +32551,8 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "CertificateName"
- ],
+ "Name": "ResourceGroupName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -35906,19 +32568,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "EmailAddress",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -35928,9 +32590,9 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -36001,66 +32663,21 @@
]
},
{
- "Name": "InputObject",
+ "Name": "ForVault",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "CancellationRequested": "System.Nullable`1[System.Boolean]",
- "Id": "System.String",
- "Status": "System.String",
- "StatusDetails": "System.String",
- "RequestId": "System.String",
- "Target": "System.String",
- "Issuer": "System.String",
- "CertificateSigningRequest": "System.String",
- "ErrorCode": "System.String",
- "ErrorMessage": "System.String",
- "Name": "System.String",
- "VaultName": "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,
@@ -36069,12 +32686,84 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "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": false,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnabledForDeployment",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "EnabledForTemplateDeployment",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "EnabledForDiskEncryption",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -36162,16 +32851,109 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "InputObjectByObjectId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ObjectId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36181,6 +32963,32 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApplicationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Guid]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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.Guid"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -36252,292 +33060,92 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzKeyVaultKey",
- "Name": "Remove-AzKeyVaultKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultKey",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByVaultName",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByVaultName",
+ "Name": "InputObjectByServicePrincipalName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -36546,14 +33154,14 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "ServicePrincipalName",
"AliasList": [
- "KeyName"
+ "SPN"
],
"Type": {
"Namespace": "System",
@@ -36571,30 +33179,6 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 1,
- "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.4.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
@@ -36623,30 +33207,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -36689,7 +33249,7 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "InputObjectByUserPrincipalName",
"Parameters": [
{
"ParameterMetadata": {
@@ -36697,21 +33257,31 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
"VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36747,6 +33317,20 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
@@ -36762,12 +33346,14 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
- "AliasList": [],
+ "Name": "UserPrincipalName",
+ "AliasList": [
+ "UPN"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -36777,9 +33363,9 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -36808,30 +33394,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -36874,40 +33436,109 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "InputObjectByEmail",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "EmailAddress",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -36917,16 +33548,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -36988,292 +33619,92 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzKeyVaultSecret",
- "Name": "Remove-AzKeyVaultSecret",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultSecret",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByVaultName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "SecretValue": "System.Security.SecureString",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "SecretName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByVaultName",
+ "Name": "InputObjectForVault",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -37282,19 +33713,17 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SecretName"
- ],
+ "Name": "EnabledForDeployment",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -37304,16 +33733,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "EnabledForTemplateDeployment",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -37337,7 +33766,7 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "EnabledForDiskEncryption",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -37361,7 +33790,7 @@
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -37425,66 +33854,21 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "ResourceIdByObjectId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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,
@@ -37493,17 +33877,17 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "ObjectId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -37513,24 +33897,26 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "ApplicationId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Guid]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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": [],
+ "GenericTypeArguments": [
+ "System.Guid"
+ ],
"Methods": [],
"Constructors": []
},
@@ -37546,7 +33932,7 @@
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -37610,16 +33996,16 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ResourceIdByServicePrincipalName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -37629,21 +34015,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "ServicePrincipalName",
+ "AliasList": [
+ "SPN"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -37653,16 +34041,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -37724,274 +34112,14 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzManagedHsm",
- "Name": "Remove-AzManagedHsm",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureManagedHsm",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "RemoveManagedHsmByName",
- "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": "Name",
- "AliasList": [
- "HsmName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "Name": "System.String",
- "StatusMessage": "System.String",
- "HsmUri": "System.String",
- "TenantName": "System.String",
- "Sku": "System.String",
- "ProvisioningState": "System.String",
- "TagsTable": "System.String",
- "InitialAdminObjectIds": "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": "managedHsm",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "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": 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": "Force",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "RemoveManagedHsmByName",
+ "Name": "ResourceIdByUserPrincipalName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "HsmName"
- ],
+ "Name": "ResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -38010,12 +34138,14 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "UserPrincipalName",
+ "AliasList": [
+ "UPN"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -38031,55 +34161,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 1,
- "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.4.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -38150,105 +34232,16 @@
]
},
{
- "Name": "RemoveManagedHsmByInputObject",
+ "Name": "ResourceIdByEmail",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "Name": "System.String",
- "StatusMessage": "System.String",
- "HsmUri": "System.String",
- "TenantName": "System.String",
- "Sku": "System.String",
- "ProvisioningState": "System.String",
- "TagsTable": "System.String",
- "InitialAdminObjectIds": "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": "managedHsm",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Force",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -38258,21 +34251,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "EmailAddress",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -38282,9 +34275,9 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -38355,7 +34348,7 @@
]
},
{
- "Name": "RemoveManagedHsmByResourceId",
+ "Name": "ResourceIdForVault",
"Parameters": [
{
"ParameterMetadata": {
@@ -38383,7 +34376,7 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "EnabledForDeployment",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -38407,7 +34400,7 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "EnabledForTemplateDeployment",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -38431,7 +34424,31 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "EnabledForDiskEncryption",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -38497,54 +34514,6 @@
{
"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.4.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
@@ -38615,32 +34584,33 @@
},
{
"VerbName": "Remove",
- "NounName": "AzManagedHsmKey",
- "Name": "Remove-AzManagedHsmKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureManagedHsmKey",
+ "NounName": "AzKeyVaultCertificate",
+ "Name": "Remove-AzKeyVaultCertificate",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultCertificate",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "RemoveByKeyNameParameterSet",
+ "DefaultParameterSetName": "ByVaultNameAndName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
"Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
"RecoveryLevel": "System.String",
- "TagsTable": "System.String",
+ "Thumbprint": "System.String",
+ "SecretId": "System.String",
+ "KeyId": "System.String",
"VaultName": "System.String",
"Name": "System.String",
"Version": "System.String",
@@ -38675,13 +34645,7 @@
"ReturnType": "System.Type"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -38690,7 +34654,7 @@
],
"Parameters": [
{
- "Name": "HsmName",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -38709,9 +34673,7 @@
},
{
"Name": "Name",
- "AliasList": [
- "KeyName"
- ],
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -38732,8 +34694,8 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -38741,8 +34703,6 @@
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
"Version": "System.String",
@@ -38791,7 +34751,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Force",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -38809,7 +34769,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "PassThru",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -38827,7 +34787,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "InRemovedState",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -38880,11 +34840,11 @@
],
"ParameterSets": [
{
- "Name": "RemoveByKeyNameParameterSet",
+ "Name": "ByVaultNameAndName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "HsmName",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -38909,9 +34869,7 @@
{
"ParameterMetadata": {
"Name": "Name",
- "AliasList": [
- "KeyName"
- ],
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -38932,6 +34890,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
@@ -38980,6 +34962,117 @@
"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": "ByObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "InRemovedState",
@@ -39004,119 +35097,6 @@
"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": "RemoveByInputObjectParameterSet",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "Force",
@@ -39165,30 +35145,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "InRemovedState",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -39235,7 +35191,7 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -39259,7 +35215,7 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -39283,7 +35239,7 @@
},
{
"ParameterMetadata": {
- "Name": "InRemovedState",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -39350,36 +35306,23 @@
"AliasList": []
},
{
- "VerbName": "Restore",
- "NounName": "AzKeyVaultCertificate",
- "Name": "Restore-AzKeyVaultCertificate",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RestoreAzureKeyVaultCertificate",
+ "VerbName": "Remove",
+ "NounName": "AzKeyVaultCertificateContact",
+ "Name": "Remove-AzKeyVaultCertificateContact",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultCertificateContact",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByVaultName",
+ "DefaultParameterSetName": "ByName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
- "KeyId": "System.String",
- "SecretId": "System.String",
- "Thumbprint": "System.String",
- "RecoveryLevel": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "Email": "System.String",
+ "VaultName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39410,7 +35353,13 @@
"ReturnType": "System.Type"
}
],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -39442,7 +35391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -39542,14 +35491,14 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputFile",
+ "Name": "EmailAddress",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -39559,6 +35508,24 @@
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -39595,7 +35562,7 @@
],
"ParameterSets": [
{
- "Name": "ByVaultName",
+ "Name": "ByName",
"Parameters": [
{
"ParameterMetadata": {
@@ -39623,14 +35590,14 @@
},
{
"ParameterMetadata": {
- "Name": "InputFile",
+ "Name": "EmailAddress",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -39645,6 +35612,30 @@
"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.4.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",
@@ -39687,7 +35678,7 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "ByObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -39696,7 +35687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -39784,14 +35775,14 @@
},
{
"ParameterMetadata": {
- "Name": "InputFile",
+ "Name": "EmailAddress",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -39806,6 +35797,30 @@
"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.4.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",
@@ -39876,14 +35891,14 @@
},
{
"ParameterMetadata": {
- "Name": "InputFile",
+ "Name": "EmailAddress",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -39898,6 +35913,30 @@
"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.4.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",
@@ -39944,14 +35983,14 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputFile",
+ "Name": "EmailAddress",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -39966,6 +36005,30 @@
"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.4.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",
@@ -40011,35 +36074,27 @@
"AliasList": []
},
{
- "VerbName": "Restore",
- "NounName": "AzKeyVaultKey",
- "Name": "Restore-AzKeyVaultKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RestoreAzureKeyVaultKey",
+ "VerbName": "Remove",
+ "NounName": "AzKeyVaultCertificateIssuer",
+ "Name": "Remove-AzKeyVaultCertificateIssuer",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultCertificateIssuer",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByVaultName",
+ "DefaultParameterSetName": "Default",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
+ "OrganizationDetails": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
+ "ApiKey": "System.Security.SecureString",
+ "AccountId": "System.String",
"Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "IssuerProvider": "System.String",
+ "VaultName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40102,36 +36157,37 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "Name",
+ "AliasList": [
+ "IssuerName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "IssuerProvider": "System.String",
+ "VaultName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40167,20 +36223,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -40190,12 +36232,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40205,15 +36247,15 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "InputFile",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40223,7 +36265,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
"Name": "DefaultProfile",
@@ -40261,7 +36303,7 @@
],
"ParameterSets": [
{
- "Name": "ByVaultName",
+ "Name": "Default",
"Parameters": [
{
"ParameterMetadata": {
@@ -40289,8 +36331,10 @@
},
{
"ParameterMetadata": {
- "Name": "InputFile",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IssuerName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -40311,6 +36355,54 @@
"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.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -40353,7 +36445,7 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "InputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -40361,31 +36453,12 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "IssuerProvider": "System.String",
+ "VaultName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40421,20 +36494,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -40450,12 +36509,12 @@
},
{
"ParameterMetadata": {
- "Name": "InputFile",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40465,89 +36524,21 @@
"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": "ByResourceId",
- "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": "InputFile",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40557,10 +36548,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -40610,12 +36601,12 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputFile",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40625,10 +36616,34 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "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.4.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
},
@@ -40677,35 +36692,33 @@
"AliasList": []
},
{
- "VerbName": "Restore",
- "NounName": "AzKeyVaultSecret",
- "Name": "Restore-AzKeyVaultSecret",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RestoreAzureKeyVaultSecret",
+ "VerbName": "Remove",
+ "NounName": "AzKeyVaultCertificateOperation",
+ "Name": "Remove-AzKeyVaultCertificateOperation",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultCertificateOperation",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByVaultName",
+ "DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "SecretValue": "System.Security.SecureString",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
+ "CancellationRequested": "System.Nullable`1[System.Boolean]",
+ "Id": "System.String",
+ "Status": "System.String",
+ "StatusDetails": "System.String",
+ "RequestId": "System.String",
+ "Target": "System.String",
+ "Issuer": "System.String",
+ "CertificateSigningRequest": "System.String",
+ "ErrorCode": "System.String",
+ "ErrorMessage": "System.String",
"Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "VaultName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40768,36 +36781,46 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "CancellationRequested": "System.Nullable`1[System.Boolean]",
+ "Id": "System.String",
+ "Status": "System.String",
+ "StatusDetails": "System.String",
+ "RequestId": "System.String",
+ "Target": "System.String",
+ "Issuer": "System.String",
+ "CertificateSigningRequest": "System.String",
+ "ErrorCode": "System.String",
+ "ErrorMessage": "System.String",
+ "Name": "System.String",
+ "VaultName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40833,20 +36856,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -40856,12 +36865,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40871,15 +36880,15 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "InputFile",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40889,7 +36898,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
"Name": "DefaultProfile",
@@ -40927,7 +36936,7 @@
],
"ParameterSets": [
{
- "Name": "ByVaultName",
+ "Name": "Default",
"Parameters": [
{
"ParameterMetadata": {
@@ -40955,8 +36964,10 @@
},
{
"ParameterMetadata": {
- "Name": "InputFile",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -40977,6 +36988,54 @@
"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.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -41019,7 +37078,7 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "InputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -41027,31 +37086,21 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "CancellationRequested": "System.Nullable`1[System.Boolean]",
+ "Id": "System.String",
+ "Status": "System.String",
+ "StatusDetails": "System.String",
+ "RequestId": "System.String",
+ "Target": "System.String",
+ "Issuer": "System.String",
+ "CertificateSigningRequest": "System.String",
+ "ErrorCode": "System.String",
+ "ErrorMessage": "System.String",
+ "Name": "System.String",
+ "VaultName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41087,20 +37136,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -41116,12 +37151,12 @@
},
{
"ParameterMetadata": {
- "Name": "InputFile",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41131,89 +37166,21 @@
"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": "ByResourceId",
- "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": "InputFile",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41223,10 +37190,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -41276,12 +37243,12 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputFile",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41291,10 +37258,34 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "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.4.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
},
@@ -41343,34 +37334,37 @@
"AliasList": []
},
{
- "VerbName": "Restore",
- "NounName": "AzManagedHsmKey",
- "Name": "Restore-AzManagedHsmKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RestoreAzureManagedHsmKey",
+ "VerbName": "Remove",
+ "NounName": "AzKeyVaultKey",
+ "Name": "Remove-AzKeyVaultKey",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultKey",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByHsmName",
+ "DefaultParameterSetName": "ByVaultName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
"Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Version": "System.String",
"RecoveryLevel": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
- "Version": "System.String",
"Id": "System.String"
},
"ElementType": null,
@@ -41416,6 +37410,24 @@
}
],
"Parameters": [
+ {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "HsmName",
"AliasList": [],
@@ -41434,32 +37446,47 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "RecoveryLevel": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
"Name": "System.String",
- "StatusMessage": "System.String",
- "HsmUri": "System.String",
- "TenantName": "System.String",
- "Sku": "System.String",
- "ProvisioningState": "System.String",
- "TagsTable": "System.String",
- "InitialAdminObjectIds": "System.String[]"
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41495,20 +37522,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "managedHsm",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -41518,12 +37531,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41533,15 +37546,15 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "InputFile",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41551,7 +37564,25 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
{
"Name": "DefaultProfile",
@@ -41589,11 +37620,11 @@
],
"ParameterSets": [
{
- "Name": "ByHsmName",
+ "Name": "ByVaultName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "HsmName",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -41617,8 +37648,10 @@
},
{
"ParameterMetadata": {
- "Name": "InputFile",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -41641,31 +37674,16 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "Force",
+ "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.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -41677,109 +37695,39 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByInputObject",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "Name": "System.String",
- "StatusMessage": "System.String",
- "HsmUri": "System.String",
- "TenantName": "System.String",
- "Sku": "System.String",
- "ProvisioningState": "System.String",
- "TagsTable": "System.String",
- "InitialAdminObjectIds": "System.String[]"
- },
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "managedHsm",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InputFile",
+ "Name": "InRemovedState",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41789,10 +37737,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -41838,11 +37786,11 @@
]
},
{
- "Name": "ByResourceId",
+ "Name": "HsmByVaultName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "HsmName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -41860,14 +37808,16 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "InputFile",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -41888,6 +37838,78 @@
"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.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -41930,16 +37952,86 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputFile",
+ "Name": "InputObject",
"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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "IsHsm": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "RecoveryLevel": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ }
+ ]
+ },
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41949,10 +38041,58 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "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.4.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": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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
},
@@ -41996,48 +38136,158 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Set",
- "NounName": "AzKeyVaultAccessPolicy",
- "Name": "Set-AzKeyVaultAccessPolicy",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.SetAzureKeyVaultAccessPolicy",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByUserPrincipalName",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "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.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "InRemovedState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AzKeyVaultSecret",
+ "Name": "Remove-AzKeyVaultSecret",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVaultSecret",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByVaultName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "SecretValue": "System.Security.SecureString",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42073,20 +38323,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -42115,8 +38351,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SecretName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -42137,15 +38375,21 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
- "ResourceId": "System.String",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42181,16 +38425,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "resource",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -42200,287 +38434,7 @@
"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": "ServicePrincipalName",
- "AliasList": [
- "SPN"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "UserPrincipalName",
- "AliasList": [
- "UPN"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "ObjectId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "EmailAddress",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "ApplicationId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Guid]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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.Guid"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PermissionsToKeys",
- "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": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PermissionsToSecrets",
- "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": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PermissionsToCertificates",
- "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": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PermissionsToStorage",
- "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": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EnabledForDeployment",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EnabledForTemplateDeployment",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EnabledForDiskEncryption",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -42498,7 +38452,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "BypassObjectIdValidation",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -42516,7 +38470,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "PassThru",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -42569,7 +38523,7 @@
],
"ParameterSets": [
{
- "Name": "ByObjectId",
+ "Name": "ByVaultName",
"Parameters": [
{
"ParameterMetadata": {
@@ -42597,8 +38551,10 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SecretName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -42614,19 +38570,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ObjectId",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42636,186 +38592,6 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ApplicationId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Guid]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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.Guid"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToKeys",
- "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": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToSecrets",
- "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": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToCertificates",
- "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": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToStorage",
- "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": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -42825,7 +38601,7 @@
},
{
"ParameterMetadata": {
- "Name": "BypassObjectIdValidation",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -42849,7 +38625,7 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -42913,21 +38689,66 @@
]
},
{
- "Name": "ByServicePrincipalName",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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,
@@ -42936,17 +38757,17 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42956,23 +38777,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ServicePrincipalName",
- "AliasList": [
- "SPN"
- ],
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42982,45 +38801,28 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PermissionsToKeys",
+ "Name": "InRemovedState",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -43032,28 +38834,34 @@
},
{
"ParameterMetadata": {
- "Name": "PermissionsToSecrets",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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",
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -43062,39 +38870,27 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "PermissionsToCertificates",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -43106,34 +38902,19 @@
},
{
"ParameterMetadata": {
- "Name": "PermissionsToStorage",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -43145,7 +38926,7 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "InRemovedState",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -43207,39 +38988,275 @@
"ValueFromPipelineByPropertyName": false
}
]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzKeyVaultManagedHsm",
+ "Name": "Remove-AzKeyVaultManagedHsm",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureManagedHsm",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "RemoveManagedHsmByName",
+ "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": "Name",
+ "AliasList": [
+ "HsmName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ByUserPrincipalName",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "Name": "System.String",
+ "StatusMessage": "System.String",
+ "HsmUri": "System.String",
+ "TenantName": "System.String",
+ "Sku": "System.String",
+ "ProvisioningState": "System.String",
+ "TagsTable": "System.String",
+ "InitialAdminObjectIds": "System.String[]"
},
- {
- "ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
- "Type": {
+ "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": "managedHsm",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "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": 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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "RemoveManagedHsmByName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "HsmName"
+ ],
+ "Type": {
"Namespace": "System",
"Name": "System.String",
"AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
@@ -43254,17 +39271,15 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 1,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "UserPrincipalName",
- "AliasList": [
- "UPN"
- ],
+ "Name": "ResourceGroupName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -43280,43 +39295,50 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
+ "Position": 1,
+ "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.4.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": "PermissionsToKeys",
+ "Name": "AsJob",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -43328,28 +39350,58 @@
},
{
"ParameterMetadata": {
- "Name": "PermissionsToSecrets",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
+ "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
@@ -43358,39 +39410,116 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "RemoveManagedHsmByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "Name": "System.String",
+ "StatusMessage": "System.String",
+ "HsmUri": "System.String",
+ "TenantName": "System.String",
+ "Sku": "System.String",
+ "ProvisioningState": "System.String",
+ "TagsTable": "System.String",
+ "InitialAdminObjectIds": "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": "managedHsm",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PermissionsToCertificates",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -43402,34 +39531,19 @@
},
{
"ParameterMetadata": {
- "Name": "PermissionsToStorage",
+ "Name": "AsJob",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -43505,11 +39619,11 @@
]
},
{
- "Name": "ByEmailAddress",
+ "Name": "RemoveManagedHsmByResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -43529,16 +39643,16 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43548,21 +39662,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EmailAddress",
+ "Name": "AsJob",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43572,45 +39686,28 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PermissionsToKeys",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -43622,28 +39719,34 @@
},
{
"ParameterMetadata": {
- "Name": "PermissionsToSecrets",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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",
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -43652,39 +39755,27 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "PermissionsToCertificates",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -43696,34 +39787,19 @@
},
{
"ParameterMetadata": {
- "Name": "PermissionsToStorage",
+ "Name": "AsJob",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -43797,9 +39873,257 @@
"ValueFromPipelineByPropertyName": false
}
]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Restore",
+ "NounName": "AzKeyVaultCertificate",
+ "Name": "Restore-AzKeyVaultCertificate",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RestoreAzureKeyVaultCertificate",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByVaultName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
+ "KeyId": "System.String",
+ "SecretId": "System.String",
+ "Thumbprint": "System.String",
+ "RecoveryLevel": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ForVault",
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "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": true
+ },
+ {
+ "Name": "InputFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ByVaultName",
"Parameters": [
{
"ParameterMetadata": {
@@ -43827,7 +40151,7 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -43844,107 +40168,11 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "EnabledForDeployment",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "EnabledForTemplateDeployment",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "EnabledForDiskEncryption",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -43987,7 +40215,7 @@
]
},
{
- "Name": "InputObjectByObjectId",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -43995,14 +40223,30 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "ResourceGroupName": "System.String",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
"Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
"TagsTable": "System.String"
},
"ElementType": null,
@@ -44045,7 +40289,11 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "resource",
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -44064,7 +40312,7 @@
},
{
"ParameterMetadata": {
- "Name": "ObjectId",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -44082,24 +40330,37 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ApplicationId",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Guid]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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.Guid"
+ "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"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -44111,169 +40372,20 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToKeys",
- "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": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToSecrets",
- "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": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToCertificates",
- "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": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceId",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "PermissionsToStorage",
+ "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": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "BypassObjectIdValidation",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44283,21 +40395,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -44307,10 +40419,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -44356,87 +40468,12 @@
]
},
{
- "Name": "InputObjectByServicePrincipalName",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "InputFile",
"AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "TagsTable": "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": "resource",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ServicePrincipalName",
- "AliasList": [
- "SPN"
- ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -44453,185 +40490,7 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToKeys",
- "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": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToSecrets",
- "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": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToCertificates",
- "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": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToStorage",
- "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": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -44675,72 +40534,396 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Restore",
+ "NounName": "AzKeyVaultKey",
+ "Name": "Restore-AzKeyVaultKey",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RestoreAzureKeyVaultKey",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByVaultName",
+ "OutputTypes": [
{
- "Name": "InputObjectByUserPrincipalName",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "TagsTable": "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": "resource",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
+ "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
+ "IsHsm": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "RecoveryLevel": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "HsmName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "HsmObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "Name": "System.String",
+ "StatusMessage": "System.String",
+ "HsmUri": "System.String",
+ "TenantName": "System.String",
+ "Sku": "System.String",
+ "ProvisioningState": "System.String",
+ "TagsTable": "System.String",
+ "InitialAdminObjectIds": "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": "managedHsm",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "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": true
+ },
+ {
+ "Name": "HsmResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "InputFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ByVaultName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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,
@@ -44749,15 +40932,13 @@
},
"Mandatory": true,
"Position": 0,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "UserPrincipalName",
- "AliasList": [
- "UPN"
- ],
+ "Name": "InputFile",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -44774,42 +40955,40 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PermissionsToKeys",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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",
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
- "ValidateSet": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -44818,130 +40997,46 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "HsmByVaultName",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "PermissionsToSecrets",
+ "Name": "HsmName",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PermissionsToCertificates",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToStorage",
- "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": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -44949,10 +41044,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -44998,7 +41093,7 @@
]
},
{
- "Name": "InputObjectByEmailAddress",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -45006,14 +41101,30 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "ResourceGroupName": "System.String",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
"Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
"TagsTable": "System.String"
},
"ElementType": null,
@@ -45056,7 +41167,11 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "resource",
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -45075,7 +41190,7 @@
},
{
"ParameterMetadata": {
- "Name": "EmailAddress",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -45093,185 +41208,7 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToKeys",
- "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": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToSecrets",
- "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": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToCertificates",
- "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": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToStorage",
- "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": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -45317,23 +41254,35 @@
]
},
{
- "Name": "InputObjectForVault",
+ "Name": "HsmByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "HsmObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "ResourceGroupName": "System.String",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
"Location": "System.String",
- "TagsTable": "System.String"
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "Name": "System.String",
+ "StatusMessage": "System.String",
+ "HsmUri": "System.String",
+ "TenantName": "System.String",
+ "Sku": "System.String",
+ "ProvisioningState": "System.String",
+ "TagsTable": "System.String",
+ "InitialAdminObjectIds": "System.String[]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45375,7 +41324,11 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "resource",
+ "Name": "managedHsm",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -45394,12 +41347,12 @@
},
{
"ParameterMetadata": {
- "Name": "EnabledForDeployment",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -45409,25 +41362,40 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnabledForTemplateDeployment",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -45439,15 +41407,20 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceId",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "EnabledForDiskEncryption",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -45457,21 +41430,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -45481,10 +41454,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -45530,11 +41503,11 @@
]
},
{
- "Name": "ResourceIdByObjectId",
+ "Name": "HsmByResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "HsmResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -45552,13 +41525,13 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ObjectId",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -45576,24 +41549,37 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ApplicationId",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Guid]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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": {},
+ "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": [
- "System.Guid"
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -45605,72 +41591,66 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "PermissionsToKeys",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PermissionsToSecrets",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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",
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -45679,99 +41659,340 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Restore",
+ "NounName": "AzKeyVaultSecret",
+ "Name": "Restore-AzKeyVaultSecret",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RestoreAzureKeyVaultSecret",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByVaultName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "SecretValue": "System.Security.SecureString",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "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": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "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": true
+ },
+ {
+ "Name": "InputFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ByVaultName",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "PermissionsToCertificates",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PermissionsToStorage",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "BypassObjectIdValidation",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -45783,15 +42004,113 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -45801,10 +42120,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -45850,7 +42169,7 @@
]
},
{
- "Name": "ResourceIdByServicePrincipalName",
+ "Name": "ByResourceId",
"Parameters": [
{
"ParameterMetadata": {
@@ -45878,10 +42197,8 @@
},
{
"ParameterMetadata": {
- "Name": "ServicePrincipalName",
- "AliasList": [
- "SPN"
- ],
+ "Name": "InputFile",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -45898,215 +42215,37 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PermissionsToKeys",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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",
+ "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": [],
- "Constructors": []
- },
- "ValidateSet": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToSecrets",
- "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": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToCertificates",
- "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": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToStorage",
- "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": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "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.4.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"
- }
- ],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -46122,11 +42261,11 @@
]
},
{
- "Name": "ResourceIdByUserPrincipalName",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "InputFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -46144,211 +42283,7 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "UserPrincipalName",
- "AliasList": [
- "UPN"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToKeys",
- "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": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToSecrets",
- "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": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToCertificates",
- "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": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToStorage",
- "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": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -46392,562 +42327,56 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Set",
+ "NounName": "AzKeyVaultAccessPolicy",
+ "Name": "Set-AzKeyVaultAccessPolicy",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.SetAzureKeyVaultAccessPolicy",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByUserPrincipalName",
+ "OutputTypes": [
{
- "Name": "ResourceIdByEmailAddress",
- "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
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "EmailAddress",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToKeys",
- "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": [
- "decrypt",
- "encrypt",
- "unwrapKey",
- "wrapKey",
- "verify",
- "sign",
- "get",
- "list",
- "update",
- "create",
- "import",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToSecrets",
- "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": [
- "get",
- "list",
- "set",
- "delete",
- "backup",
- "restore",
- "recover",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToCertificates",
- "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": [
- "get",
- "list",
- "delete",
- "create",
- "import",
- "update",
- "managecontacts",
- "getissuers",
- "listissuers",
- "setissuers",
- "deleteissuers",
- "manageissuers",
- "recover",
- "purge",
- "backup",
- "restore"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PermissionsToStorage",
- "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": [
- "get",
- "list",
- "delete",
- "set",
- "update",
- "regeneratekey",
- "getsas",
- "listsas",
- "deletesas",
- "setsas",
- "recover",
- "backup",
- "restore",
- "purge"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "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.4.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": "ResourceIdForVault",
- "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": "EnabledForDeployment",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "EnabledForTemplateDeployment",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "EnabledForDiskEncryption",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.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": "AzKeyVaultCertificateIssuer",
- "Name": "Set-AzKeyVaultCertificateIssuer",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.SetAzureKeyVaultCertificateIssuer",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "Expanded",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DnsNames": "System.Collections.Generic.List`1[System.String]",
- "KeyUsage": "System.Collections.Generic.List`1[System.String]",
- "Ekus": "System.Collections.Generic.List`1[System.String]",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "CertificateTransparency": "System.Nullable`1[System.Boolean]",
- "Exportable": "System.Nullable`1[System.Boolean]",
- "ReuseKeyOnRenewal": "System.Nullable`1[System.Boolean]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "EmailAtPercentageLifetime": "System.Nullable`1[System.Int32]",
- "EmailAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
- "RenewAtPercentageLifetime": "System.Nullable`1[System.Int32]",
- "RenewAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
- "ValidityInMonths": "System.Nullable`1[System.Int32]",
- "KeySize": "System.Nullable`1[System.Int32]",
- "IssuerName": "System.String",
- "SubjectName": "System.String",
- "Curve": "System.String",
- "Kty": "System.String",
- "CertificateType": "System.String",
- "SecretContentType": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Validate",
- "Parameters": [],
- "ReturnType": "System.Void"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
{
"Name": "Equals",
@@ -46981,79 +42410,11 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "dnsNames",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keyUsages",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "ekus",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "enabled",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "issuerName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "certificateType",
+ "Name": "vault",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
- "Name": "renewAtNumberOfDaysBeforeExpiry",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "renewAtPercentageLifetime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "emailAtNumberOfDaysBeforeExpiry",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "emailAtPercentageLifetime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "reuseKeyOnRenewal",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "secretContentType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "subjectName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "validityInMonths",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keyType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keySize",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "curve",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "exportable",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "certificateTransparency",
+ "Name": "adClient",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -47085,9 +42446,112 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
+ "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": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "TagsTable": "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": "resource",
+ "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": true
+ },
+ {
+ "Name": "ServicePrincipalName",
"AliasList": [
- "IssuerName"
+ "SPN"
],
"Type": {
"Namespace": "System",
@@ -47105,8 +42569,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "IssuerProvider",
- "AliasList": [],
+ "Name": "UserPrincipalName",
+ "AliasList": [
+ "UPN"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -47123,7 +42589,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AccountId",
+ "Name": "ObjectId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -47141,12 +42607,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ApiKey",
+ "Name": "EmailAddress",
"AliasList": [],
"Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47159,113 +42625,230 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "OrganizationDetails",
+ "Name": "ApplicationId",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
- "Id": "System.String"
- },
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Guid]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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": [],
- "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"
- }
+ "GenericTypeArguments": [
+ "System.Guid"
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "InputObject",
- "AliasList": [
- "Issuer"
+ "Name": "PermissionsToKeys",
+ "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": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PermissionsToSecrets",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PermissionsToCertificates",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "IssuerProvider": "System.String",
- "VaultName": "System.String"
- },
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PermissionsToStorage",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnabledForDeployment",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnabledForTemplateDeployment",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnabledForDiskEncryption",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "BypassObjectIdValidation",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
{
"Name": "PassThru",
@@ -47321,7 +42904,7 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "ByObjectId",
"Parameters": [
{
"ParameterMetadata": {
@@ -47349,10 +42932,8 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IssuerName"
- ],
+ "Name": "ResourceGroupName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -47368,19 +42949,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "ObjectId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -47390,40 +42971,27 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "ApplicationId",
+ "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.Nullable`1[System.Guid]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Guid"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -47435,54 +43003,77 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "Expanded",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "IssuerProvider",
+ "Name": "PermissionsToKeys",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AccountId",
+ "Name": "PermissionsToSecrets",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -47491,22 +43082,40 @@
},
{
"ParameterMetadata": {
- "Name": "ApiKey",
+ "Name": "PermissionsToCertificates",
"AliasList": [],
"Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -47515,97 +43124,52 @@
},
{
"ParameterMetadata": {
- "Name": "OrganizationDetails",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
- "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": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "PermissionsToStorage",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IssuerName"
- ],
+ "Name": "BypassObjectIdValidation",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47615,10 +43179,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -47688,59 +43252,21 @@
]
},
{
- "Name": "ByValue",
+ "Name": "ByServicePrincipalName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [
- "Issuer"
- ],
+ "Name": "VaultName",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "IssuerProvider": "System.String",
- "VaultName": "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,
@@ -47748,13 +43274,13 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -47771,16 +43297,16 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "ServicePrincipalName",
"AliasList": [
- "IssuerName"
+ "SPN"
],
"Type": {
"Namespace": "System",
@@ -47798,7 +43324,165 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 1,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToKeys",
+ "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": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToSecrets",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToCertificates",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToStorage",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -47866,852 +43550,1759 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Set",
- "NounName": "AzKeyVaultCertificatePolicy",
- "Name": "Set-AzKeyVaultCertificatePolicy",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.SetAzureKeyVaultCertificatePolicy",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ExpandedRenewPercentage",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DnsNames": "System.Collections.Generic.List`1[System.String]",
- "KeyUsage": "System.Collections.Generic.List`1[System.String]",
- "Ekus": "System.Collections.Generic.List`1[System.String]",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "CertificateTransparency": "System.Nullable`1[System.Boolean]",
- "Exportable": "System.Nullable`1[System.Boolean]",
- "ReuseKeyOnRenewal": "System.Nullable`1[System.Boolean]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "EmailAtPercentageLifetime": "System.Nullable`1[System.Int32]",
- "EmailAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
- "RenewAtPercentageLifetime": "System.Nullable`1[System.Int32]",
- "RenewAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
- "ValidityInMonths": "System.Nullable`1[System.Int32]",
- "KeySize": "System.Nullable`1[System.Int32]",
- "IssuerName": "System.String",
- "SubjectName": "System.String",
- "Curve": "System.String",
- "Kty": "System.String",
- "CertificateType": "System.String",
- "SecretContentType": "System.String"
+ "Name": "ByUserPrincipalName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Validate",
- "Parameters": [],
- "ReturnType": "System.Void"
+ {
+ "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
},
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ "Mandatory": false,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "UserPrincipalName",
+ "AliasList": [
+ "UPN"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToKeys",
+ "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": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
],
- "ReturnType": "System.Boolean"
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToSecrets",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToCertificates",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "dnsNames",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keyUsages",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "ekus",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "enabled",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "issuerName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "certificateType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "renewAtNumberOfDaysBeforeExpiry",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "renewAtPercentageLifetime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "emailAtNumberOfDaysBeforeExpiry",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "emailAtPercentageLifetime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "reuseKeyOnRenewal",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "secretContentType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "subjectName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "validityInMonths",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keyType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keySize",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "curve",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "exportable",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "certificateTransparency",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "CertificateName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": [
- "CertificatePolicy"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DnsNames": "System.Collections.Generic.List`1[System.String]",
- "KeyUsage": "System.Collections.Generic.List`1[System.String]",
- "Ekus": "System.Collections.Generic.List`1[System.String]",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "CertificateTransparency": "System.Nullable`1[System.Boolean]",
- "Exportable": "System.Nullable`1[System.Boolean]",
- "ReuseKeyOnRenewal": "System.Nullable`1[System.Boolean]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "EmailAtPercentageLifetime": "System.Nullable`1[System.Int32]",
- "EmailAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
- "RenewAtPercentageLifetime": "System.Nullable`1[System.Int32]",
- "RenewAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
- "ValidityInMonths": "System.Nullable`1[System.Int32]",
- "KeySize": "System.Nullable`1[System.Int32]",
- "IssuerName": "System.String",
- "SubjectName": "System.String",
- "Curve": "System.String",
- "Kty": "System.String",
- "CertificateType": "System.String",
- "SecretContentType": "System.String"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Validate",
- "Parameters": [],
- "ReturnType": "System.Void"
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToStorage",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
- "ReturnType": "System.Boolean"
+ "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
},
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByEmailAddress",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
+ "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": true
},
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "dnsNames",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keyUsages",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "ekus",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "enabled",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "issuerName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "certificateType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "renewAtNumberOfDaysBeforeExpiry",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "renewAtPercentageLifetime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "emailAtNumberOfDaysBeforeExpiry",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "emailAtPercentageLifetime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "reuseKeyOnRenewal",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "secretContentType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "subjectName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "validityInMonths",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keyType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keySize",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "curve",
- "Type": "System.Reflection.RuntimeParameterInfo"
+ "Mandatory": false,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToKeys",
+ "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": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToSecrets",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToCertificates",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToStorage",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "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.4.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]"
},
- {
- "Name": "exportable",
- "Type": "System.Reflection.RuntimeParameterInfo"
+ "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": "ForVault",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": false,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnabledForDeployment",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "EnabledForTemplateDeployment",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "EnabledForDiskEncryption",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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]"
},
- {
- "Name": "certificateTransparency",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "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": "RenewAtNumberOfDaysBeforeExpiry",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": 1,
- "ValidateRangeMax": 2147483647,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "RenewAtPercentageLifetime",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": 0,
- "ValidateRangeMax": 99,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "SecretContentType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "application/x-pkcs12",
- "application/x-pem-file"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ReuseKeyOnRenewal",
- "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": false
- },
- {
- "Name": "Disabled",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "SubjectName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "DnsName",
- "AliasList": [
- "DnsNames"
- ],
- "Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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.String"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "KeyUsage",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "Ekus",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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.String"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ValidityInMonths",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "IssuerName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "CertificateType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "EmailAtNumberOfDaysBeforeExpiry",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EmailAtPercentageLifetime",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "KeyType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "RSA",
- "RSA-HSM",
- "EC",
- "EC-HSM"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "KeySize",
- "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": [
- "2048",
- "3072",
- "4096",
- "256",
- "384",
- "521"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "KeyNotExportable",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "CertificateTransparency",
- "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": false
- },
- {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "Curve",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "P-256",
- "P-384",
- "P-521",
- "P-256K",
- "SECP256K1"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "Name": "InputObjectByObjectId",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "TagsTable": "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": "resource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ObjectId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApplicationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Guid]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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.Guid"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToKeys",
+ "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": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToSecrets",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToCertificates",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToStorage",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "BypassObjectIdValidation",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "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]"
+ "Name": "InputObjectByServicePrincipalName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "TagsTable": "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": "resource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
+ {
+ "ParameterMetadata": {
+ "Name": "ServicePrincipalName",
+ "AliasList": [
+ "SPN"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToKeys",
+ "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": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToSecrets",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToCertificates",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToStorage",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "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.4.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",
+ "Name": "InputObjectByUserPrincipalName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "TagsTable": "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": "resource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "UserPrincipalName",
+ "AliasList": [
+ "UPN"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToKeys",
+ "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": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToSecrets",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToCertificates",
+ "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": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToStorage",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "CertificateName"
- ],
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48721,27 +45312,40 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EmailAtNumberOfDaysBeforeExpiry",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": {},
+ "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": [
- "System.Int32"
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -48753,52 +45357,141 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "InputObjectByEmailAddress",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "TagsTable": "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": "resource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EmailAtPercentageLifetime",
+ "Name": "EmailAddress",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyType",
+ "Name": "PermissionsToKeys",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [
- "RSA",
- "RSA-HSM",
- "EC",
- "EC-HSM"
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
@@ -48811,25 +45504,28 @@
},
{
"ParameterMetadata": {
- "Name": "KeySize",
+ "Name": "PermissionsToSecrets",
"AliasList": [],
"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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [
- "2048",
- "3072",
- "4096",
- "256",
- "384",
- "521"
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
@@ -48838,25 +45534,41 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CertificateTransparency",
+ "Name": "PermissionsToCertificates",
"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",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -48868,19 +45580,35 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "PermissionsToStorage",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -48892,25 +45620,19 @@
},
{
"ParameterMetadata": {
- "Name": "Curve",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "P-256",
- "P-384",
- "P-521",
- "P-256K",
- "SECP256K1"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -48918,7 +45640,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -48962,49 +45684,27 @@
]
},
{
- "Name": "ByValue",
+ "Name": "InputObjectForVault",
"Parameters": [
{
"ParameterMetadata": {
"Name": "InputObject",
- "AliasList": [
- "CertificatePolicy"
- ],
+ "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DnsNames": "System.Collections.Generic.List`1[System.String]",
- "KeyUsage": "System.Collections.Generic.List`1[System.String]",
- "Ekus": "System.Collections.Generic.List`1[System.String]",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "CertificateTransparency": "System.Nullable`1[System.Boolean]",
- "Exportable": "System.Nullable`1[System.Boolean]",
- "ReuseKeyOnRenewal": "System.Nullable`1[System.Boolean]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "EmailAtPercentageLifetime": "System.Nullable`1[System.Int32]",
- "EmailAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
- "RenewAtPercentageLifetime": "System.Nullable`1[System.Int32]",
- "RenewAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
- "ValidityInMonths": "System.Nullable`1[System.Int32]",
- "KeySize": "System.Nullable`1[System.Int32]",
- "IssuerName": "System.String",
- "SubjectName": "System.String",
- "Curve": "System.String",
- "Kty": "System.String",
- "CertificateType": "System.String",
- "SecretContentType": "System.String"
+ "Tags": "System.Collections.Hashtable",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
- {
- "Name": "Validate",
- "Parameters": [],
- "ReturnType": "System.Void"
- },
{
"Name": "ToString",
"Parameters": [],
@@ -49042,184 +45742,34 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "dnsNames",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keyUsages",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "ekus",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "enabled",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "issuerName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "certificateType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "renewAtNumberOfDaysBeforeExpiry",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "renewAtPercentageLifetime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "emailAtNumberOfDaysBeforeExpiry",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "emailAtPercentageLifetime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "reuseKeyOnRenewal",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "secretContentType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "subjectName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "validityInMonths",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keyType",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "keySize",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "curve",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "exportable",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "certificateTransparency",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": 2,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "CertificateName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "EmailAtNumberOfDaysBeforeExpiry",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
+ "Name": "resource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EmailAtPercentageLifetime",
+ "Name": "EnabledForDeployment",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -49235,24 +45785,19 @@
},
{
"ParameterMetadata": {
- "Name": "KeyType",
+ "Name": "EnabledForTemplateDeployment",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "RSA",
- "RSA-HSM",
- "EC",
- "EC-HSM"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -49264,51 +45809,18 @@
},
{
"ParameterMetadata": {
- "Name": "KeySize",
+ "Name": "EnabledForDiskEncryption",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "2048",
- "3072",
- "4096",
- "256",
- "384",
- "521"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "CertificateTransparency",
- "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,
@@ -49343,36 +45855,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "Curve",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "P-256",
- "P-384",
- "P-521",
- "P-256K",
- "SECP256K1"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -49415,37 +45897,35 @@
]
},
{
- "Name": "ExpandedRenewNumber",
+ "Name": "ResourceIdByObjectId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "RenewAtNumberOfDaysBeforeExpiry",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 1,
- "ValidateRangeMax": 2147483647,
- "ValidateNotNullOrEmpty": false
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "SecretContentType",
+ "Name": "ObjectId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -49457,31 +45937,28 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "application/x-pkcs12",
- "application/x-pem-file"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ReuseKeyOnRenewal",
+ "Name": "ApplicationId",
"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",
+ "Name": "System.Nullable`1[System.Guid]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Guid, 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"
+ "System.Guid"
],
"Methods": [],
"Constructors": []
@@ -49498,19 +45975,37 @@
},
{
"ParameterMetadata": {
- "Name": "Disabled",
+ "Name": "PermissionsToKeys",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -49522,73 +46017,29 @@
},
{
"ParameterMetadata": {
- "Name": "SubjectName",
+ "Name": "PermissionsToSecrets",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DnsName",
- "AliasList": [
- "DnsNames"
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
],
- "Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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.String"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "KeyUsage",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -49600,21 +46051,37 @@
},
{
"ParameterMetadata": {
- "Name": "Ekus",
+ "Name": "PermissionsToCertificates",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.String"
- ],
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -49626,21 +46093,35 @@
},
{
"ParameterMetadata": {
- "Name": "ValidityInMonths",
+ "Name": "PermissionsToStorage",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -49652,12 +46133,12 @@
},
{
"ParameterMetadata": {
- "Name": "IssuerName",
+ "Name": "BypassObjectIdValidation",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49676,12 +46157,12 @@
},
{
"ParameterMetadata": {
- "Name": "CertificateType",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49700,16 +46181,31 @@
},
{
"ParameterMetadata": {
- "Name": "KeyNotExportable",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -49721,10 +46217,15 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ResourceIdByServicePrincipalName",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -49744,13 +46245,13 @@
"Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "ServicePrincipalName",
"AliasList": [
- "CertificateName"
+ "SPN"
],
"Type": {
"Namespace": "System",
@@ -49768,53 +46269,43 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "EmailAtNumberOfDaysBeforeExpiry",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EmailAtPercentageLifetime",
+ "Name": "PermissionsToKeys",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -49826,23 +46317,28 @@
},
{
"ParameterMetadata": {
- "Name": "KeyType",
+ "Name": "PermissionsToSecrets",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [
- "RSA",
- "RSA-HSM",
- "EC",
- "EC-HSM"
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
@@ -49855,25 +46351,36 @@
},
{
"ParameterMetadata": {
- "Name": "KeySize",
+ "Name": "PermissionsToCertificates",
"AliasList": [],
"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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [
- "2048",
- "3072",
- "4096",
- "256",
- "384",
- "521"
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
@@ -49882,25 +46389,39 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CertificateTransparency",
+ "Name": "PermissionsToStorage",
"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",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -49934,36 +46455,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "Curve",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "P-256",
- "P-384",
- "P-521",
- "P-256K",
- "SECP256K1"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -50006,27 +46497,93 @@
]
},
{
- "Name": "ExpandedRenewPercentage",
+ "Name": "ResourceIdByUserPrincipalName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "RenewAtPercentageLifetime",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 0,
- "ValidateRangeMax": 99,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "UserPrincipalName",
+ "AliasList": [
+ "UPN"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PermissionsToKeys",
+ "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": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -50036,21 +46593,28 @@
},
{
"ParameterMetadata": {
- "Name": "SecretContentType",
+ "Name": "PermissionsToSecrets",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [
- "application/x-pkcs12",
- "application/x-pem-file"
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
@@ -50063,21 +46627,37 @@
},
{
"ParameterMetadata": {
- "Name": "ReuseKeyOnRenewal",
+ "Name": "PermissionsToCertificates",
"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",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -50089,19 +46669,35 @@
},
{
"ParameterMetadata": {
- "Name": "Disabled",
+ "Name": "PermissionsToStorage",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -50113,12 +46709,12 @@
},
{
"ParameterMetadata": {
- "Name": "SubjectName",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50137,20 +46733,31 @@
},
{
"ParameterMetadata": {
- "Name": "DnsName",
+ "Name": "DefaultProfile",
"AliasList": [
- "DnsNames"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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": {},
+ "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": [
- "System.String"
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -50162,50 +46769,93 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ResourceIdByEmailAddress",
+ "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": "KeyUsage",
+ "Name": "EmailAddress",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Ekus",
+ "Name": "PermissionsToKeys",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.String"
- ],
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "decrypt",
+ "encrypt",
+ "unwrapKey",
+ "wrapKey",
+ "verify",
+ "sign",
+ "get",
+ "list",
+ "update",
+ "create",
+ "import",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -50217,21 +46867,29 @@
},
{
"ParameterMetadata": {
- "Name": "ValidityInMonths",
+ "Name": "PermissionsToSecrets",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "set",
+ "delete",
+ "backup",
+ "restore",
+ "recover",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -50243,19 +46901,37 @@
},
{
"ParameterMetadata": {
- "Name": "IssuerName",
+ "Name": "PermissionsToCertificates",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "create",
+ "import",
+ "update",
+ "managecontacts",
+ "getissuers",
+ "listissuers",
+ "setissuers",
+ "deleteissuers",
+ "manageissuers",
+ "recover",
+ "purge",
+ "backup",
+ "restore"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -50267,19 +46943,35 @@
},
{
"ParameterMetadata": {
- "Name": "CertificateType",
+ "Name": "PermissionsToStorage",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "all",
+ "get",
+ "list",
+ "delete",
+ "set",
+ "update",
+ "regeneratekey",
+ "getsas",
+ "listsas",
+ "deletesas",
+ "setsas",
+ "recover",
+ "backup",
+ "restore",
+ "purge"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -50291,7 +46983,7 @@
},
{
"ParameterMetadata": {
- "Name": "KeyNotExportable",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -50315,34 +47007,52 @@
},
{
"ParameterMetadata": {
- "Name": "VaultName",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ResourceIdForVault",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "CertificateName"
- ],
+ "Name": "ResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -50359,23 +47069,21 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 1,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "EmailAtNumberOfDaysBeforeExpiry",
+ "Name": "EnabledForDeployment",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -50391,17 +47099,15 @@
},
{
"ParameterMetadata": {
- "Name": "EmailAtPercentageLifetime",
+ "Name": "EnabledForTemplateDeployment",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -50417,24 +47123,19 @@
},
{
"ParameterMetadata": {
- "Name": "KeyType",
+ "Name": "EnabledForDiskEncryption",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "RSA",
- "RSA-HSM",
- "EC",
- "EC-HSM"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -50446,26 +47147,19 @@
},
{
"ParameterMetadata": {
- "Name": "KeySize",
+ "Name": "PassThru",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "2048",
- "3072",
- "4096",
- "256",
- "384",
- "521"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -50473,22 +47167,35 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CertificateTransparency",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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": {},
+ "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": [
- "System.Boolean"
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -50500,7 +47207,12 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "PassThru",
@@ -50525,36 +47237,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "Curve",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "P-256",
- "P-384",
- "P-521",
- "P-256K",
- "SECP256K1"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -50601,38 +47283,50 @@
},
{
"VerbName": "Set",
- "NounName": "AzKeyVaultSecret",
- "Name": "Set-AzKeyVaultSecret",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.SetAzureKeyVaultSecret",
+ "NounName": "AzKeyVaultCertificateIssuer",
+ "Name": "Set-AzKeyVaultCertificateIssuer",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.SetAzureKeyVaultCertificateIssuer",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "Default",
+ "DefaultParameterSetName": "Expanded",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
- "Tags": "System.Collections.Hashtable",
+ "DnsNames": "System.Collections.Generic.List`1[System.String]",
+ "KeyUsage": "System.Collections.Generic.List`1[System.String]",
+ "Ekus": "System.Collections.Generic.List`1[System.String]",
"Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
+ "CertificateTransparency": "System.Nullable`1[System.Boolean]",
+ "Exportable": "System.Nullable`1[System.Boolean]",
+ "ReuseKeyOnRenewal": "System.Nullable`1[System.Boolean]",
"Updated": "System.Nullable`1[System.DateTime]",
- "SecretValue": "System.Security.SecureString",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "Created": "System.Nullable`1[System.DateTime]",
+ "EmailAtPercentageLifetime": "System.Nullable`1[System.Int32]",
+ "EmailAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
+ "RenewAtPercentageLifetime": "System.Nullable`1[System.Int32]",
+ "RenewAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
+ "ValidityInMonths": "System.Nullable`1[System.Int32]",
+ "KeySize": "System.Nullable`1[System.Int32]",
+ "IssuerName": "System.String",
+ "SubjectName": "System.String",
+ "Curve": "System.String",
+ "Kty": "System.String",
+ "CertificateType": "System.String",
+ "SecretContentType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -50664,6 +47358,88 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "dnsNames",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keyUsages",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "ekus",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "enabled",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "issuerName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "certificateType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "renewAtNumberOfDaysBeforeExpiry",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "renewAtPercentageLifetime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "emailAtNumberOfDaysBeforeExpiry",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "emailAtPercentageLifetime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "reuseKeyOnRenewal",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "secretContentType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "subjectName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "validityInMonths",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keyType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keySize",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "curve",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "exportable",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "certificateTransparency",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
@@ -50694,7 +47470,7 @@
{
"Name": "Name",
"AliasList": [
- "SecretName"
+ "IssuerName"
],
"Type": {
"Namespace": "System",
@@ -50712,24 +47488,68 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
+ "Name": "IssuerProvider",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AccountId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ApiKey",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, 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": "OrganizationDetails",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
+ "AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
"Id": "System.String"
},
"ElementType": null,
@@ -50775,25 +47595,63 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "SecretValue",
- "AliasList": [],
+ "Name": "InputObject",
+ "AliasList": [
+ "Issuer"
+ ],
"Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "IssuerProvider": "System.String",
+ "VaultName": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "Disable",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -50810,84 +47668,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- {
- "Name": "Expires",
- "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": false
- },
- {
- "Name": "NotBefore",
- "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": false
- },
- {
- "Name": "ContentType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Tag",
- "AliasList": [
- "Tags"
- ],
- "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": "DefaultProfile",
"AliasList": [
@@ -50924,7 +47704,7 @@
],
"ParameterSets": [
{
- "Name": "Default",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
@@ -50952,134 +47732,10 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SecretName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "SecretValue",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, 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": 2,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Disable",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Expires",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NotBefore",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ContentType",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IssuerName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -51093,23 +47749,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51168,66 +47822,21 @@
]
},
{
- "Name": "InputObject",
+ "Name": "Expanded",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "IssuerProvider",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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,
@@ -51235,18 +47844,18 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SecretValue",
+ "Name": "AccountId",
"AliasList": [],
"Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51256,21 +47865,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 2,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Disable",
+ "Name": "ApiKey",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51280,7 +47889,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -51289,60 +47898,93 @@
},
{
"ParameterMetadata": {
- "Name": "Expires",
+ "Name": "OrganizationDetails",
"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": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
+ "Id": "System.String"
+ },
"ElementType": null,
- "GenericTypeArguments": [
- "System.DateTime"
+ "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"
+ }
],
- "Methods": [],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "VaultName",
"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": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ContentType",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IssuerName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -51356,23 +47998,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51431,112 +48071,100 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByValue",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "SecretValue",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, 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": 2,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Disable",
- "AliasList": [],
+ "Name": "InputObject",
+ "AliasList": [
+ "Issuer"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "IssuerProvider": "System.String",
+ "VaultName": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Expires",
- "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": [
+ {
+ "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"
+ }
],
- "Methods": [],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "VaultName",
"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": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ContentType",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IssuerName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -51550,23 +48178,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51628,37 +48254,251 @@
"AliasList": []
},
{
- "VerbName": "Stop",
- "NounName": "AzKeyVaultCertificateOperation",
- "Name": "Stop-AzKeyVaultCertificateOperation",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.StopAzureKeyVaultCertificateOperation",
+ "VerbName": "Set",
+ "NounName": "AzKeyVaultCertificatePolicy",
+ "Name": "Set-AzKeyVaultCertificatePolicy",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.SetAzureKeyVaultCertificatePolicy",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "Default",
+ "DefaultParameterSetName": "ExpandedRenewPercentage",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DnsNames": "System.Collections.Generic.List`1[System.String]",
+ "KeyUsage": "System.Collections.Generic.List`1[System.String]",
+ "Ekus": "System.Collections.Generic.List`1[System.String]",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "CertificateTransparency": "System.Nullable`1[System.Boolean]",
+ "Exportable": "System.Nullable`1[System.Boolean]",
+ "ReuseKeyOnRenewal": "System.Nullable`1[System.Boolean]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "EmailAtPercentageLifetime": "System.Nullable`1[System.Int32]",
+ "EmailAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
+ "RenewAtPercentageLifetime": "System.Nullable`1[System.Int32]",
+ "RenewAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
+ "ValidityInMonths": "System.Nullable`1[System.Int32]",
+ "KeySize": "System.Nullable`1[System.Int32]",
+ "IssuerName": "System.String",
+ "SubjectName": "System.String",
+ "Curve": "System.String",
+ "Kty": "System.String",
+ "CertificateType": "System.String",
+ "SecretContentType": "System.String"
+ },
+ "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": "dnsNames",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keyUsages",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "ekus",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "enabled",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "issuerName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "certificateType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "renewAtNumberOfDaysBeforeExpiry",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "renewAtPercentageLifetime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "emailAtNumberOfDaysBeforeExpiry",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "emailAtPercentageLifetime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "reuseKeyOnRenewal",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "secretContentType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "subjectName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "validityInMonths",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keyType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keySize",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "curve",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "exportable",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "certificateTransparency",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": [
+ "CertificatePolicy"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "CancellationRequested": "System.Nullable`1[System.Boolean]",
- "Id": "System.String",
- "Status": "System.String",
- "StatusDetails": "System.String",
- "RequestId": "System.String",
- "Target": "System.String",
- "Issuer": "System.String",
- "CertificateSigningRequest": "System.String",
- "ErrorCode": "System.String",
- "ErrorMessage": "System.String",
- "Name": "System.String",
- "VaultName": "System.String"
+ "DnsNames": "System.Collections.Generic.List`1[System.String]",
+ "KeyUsage": "System.Collections.Generic.List`1[System.String]",
+ "Ekus": "System.Collections.Generic.List`1[System.String]",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "CertificateTransparency": "System.Nullable`1[System.Boolean]",
+ "Exportable": "System.Nullable`1[System.Boolean]",
+ "ReuseKeyOnRenewal": "System.Nullable`1[System.Boolean]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "EmailAtPercentageLifetime": "System.Nullable`1[System.Int32]",
+ "EmailAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
+ "RenewAtPercentageLifetime": "System.Nullable`1[System.Int32]",
+ "RenewAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
+ "ValidityInMonths": "System.Nullable`1[System.Int32]",
+ "KeySize": "System.Nullable`1[System.Int32]",
+ "IssuerName": "System.String",
+ "SubjectName": "System.String",
+ "Curve": "System.String",
+ "Kty": "System.String",
+ "CertificateType": "System.String",
+ "SecretContentType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -51690,17 +48530,138 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "dnsNames",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keyUsages",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "ekus",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "enabled",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "issuerName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "certificateType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "renewAtNumberOfDaysBeforeExpiry",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "renewAtPercentageLifetime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "emailAtNumberOfDaysBeforeExpiry",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "emailAtPercentageLifetime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "reuseKeyOnRenewal",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "secretContentType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "subjectName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "validityInMonths",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keyType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keySize",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "curve",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "exportable",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "certificateTransparency",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
- "Name": "VaultName",
+ "Name": "RenewAtNumberOfDaysBeforeExpiry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RenewAtPercentageLifetime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 0,
+ "ValidateRangeMax": 99,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SecretContentType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -51712,16 +48673,155 @@
"Methods": [],
"Constructors": []
},
+ "ValidateSet": [
+ "application/x-pkcs12",
+ "application/x-pem-file"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ReuseKeyOnRenewal",
+ "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
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "Name",
+ "Name": "Disabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubjectName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "DnsName",
"AliasList": [
- "CertificateName"
+ "DnsNames"
],
+ "Type": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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.String"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "KeyUsage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Ekus",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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.String"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ValidityInMonths",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IssuerName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -51735,73 +48835,154 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "InputObject",
+ "Name": "CertificateType",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "CancellationRequested": "System.Nullable`1[System.Boolean]",
- "Id": "System.String",
- "Status": "System.String",
- "StatusDetails": "System.String",
- "RequestId": "System.String",
- "Target": "System.String",
- "Issuer": "System.String",
- "CertificateSigningRequest": "System.String",
- "ErrorCode": "System.String",
- "ErrorMessage": "System.String",
- "Name": "System.String",
- "VaultName": "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": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EmailAtNumberOfDaysBeforeExpiry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EmailAtPercentageLifetime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "KeyType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "RSA",
+ "RSA-HSM",
+ "EC",
+ "EC-HSM"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "KeySize",
+ "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": [
+ "2048",
+ "3072",
+ "4096",
+ "256",
+ "384",
+ "521"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "KeyNotExportable",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CertificateTransparency",
+ "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": [],
- "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"
- }
+ "GenericTypeArguments": [
+ "System.Boolean"
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "Force",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -51818,6 +48999,30 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "Curve",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "P-256",
+ "P-384",
+ "P-521",
+ "P-256K",
+ "SECP256K1"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -51854,7 +49059,7 @@
],
"ParameterSets": [
{
- "Name": "Default",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
@@ -51908,15 +49113,17 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "EmailAtNumberOfDaysBeforeExpiry",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -51932,31 +49139,18 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "EmailAtPercentageLifetime",
+ "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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -51968,135 +49162,27 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "InputObject",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "CancellationRequested": "System.Nullable`1[System.Boolean]",
- "Id": "System.String",
- "Status": "System.String",
- "StatusDetails": "System.String",
- "RequestId": "System.String",
- "Target": "System.String",
- "Issuer": "System.String",
- "CertificateSigningRequest": "System.String",
- "ErrorCode": "System.String",
- "ErrorMessage": "System.String",
- "Name": "System.String",
- "VaultName": "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",
+ "Name": "KeyType",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "ValidateSet": [
+ "RSA",
+ "RSA-HSM",
+ "EC",
+ "EC-HSM"
],
- "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
@@ -52105,27 +49191,29 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "KeySize",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "2048",
+ "3072",
+ "4096",
+ "256",
+ "384",
+ "521"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -52133,35 +49221,22 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "CertificateTransparency",
+ "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.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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Boolean"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -52172,229 +49247,16 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Undo",
- "NounName": "AzKeyVaultCertificateRemoval",
- "Name": "Undo-AzKeyVaultCertificateRemoval",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultCertificateRemoval",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "Default",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
- "KeyId": "System.String",
- "SecretId": "System.String",
- "Thumbprint": "System.String",
- "RecoveryLevel": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "CertificateName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "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": "Default",
- "Parameters": [
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -52404,19 +49266,17 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "CertificateName"
- ],
+ "Name": "Curve",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -52427,15 +49287,21 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "P-256",
+ "P-384",
+ "P-521",
+ "P-256K",
+ "SECP256K1"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -52479,33 +49345,49 @@
]
},
{
- "Name": "InputObject",
+ "Name": "ByValue",
"Parameters": [
{
"ParameterMetadata": {
"Name": "InputObject",
- "AliasList": [],
+ "AliasList": [
+ "CertificatePolicy"
+ ],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Tags": "System.Collections.Hashtable",
+ "DnsNames": "System.Collections.Generic.List`1[System.String]",
+ "KeyUsage": "System.Collections.Generic.List`1[System.String]",
+ "Ekus": "System.Collections.Generic.List`1[System.String]",
"Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
+ "CertificateTransparency": "System.Nullable`1[System.Boolean]",
+ "Exportable": "System.Nullable`1[System.Boolean]",
+ "ReuseKeyOnRenewal": "System.Nullable`1[System.Boolean]",
"Updated": "System.Nullable`1[System.DateTime]",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "Created": "System.Nullable`1[System.DateTime]",
+ "EmailAtPercentageLifetime": "System.Nullable`1[System.Int32]",
+ "EmailAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
+ "RenewAtPercentageLifetime": "System.Nullable`1[System.Int32]",
+ "RenewAtNumberOfDaysBeforeExpiry": "System.Nullable`1[System.Int32]",
+ "ValidityInMonths": "System.Nullable`1[System.Int32]",
+ "KeySize": "System.Nullable`1[System.Int32]",
+ "IssuerName": "System.String",
+ "SubjectName": "System.String",
+ "Curve": "System.String",
+ "Kty": "System.String",
+ "CertificateType": "System.String",
+ "SecretContentType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -52537,46 +49419,165 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "dnsNames",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keyUsages",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "ekus",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "enabled",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "issuerName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "certificateType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "renewAtNumberOfDaysBeforeExpiry",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "renewAtPercentageLifetime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "emailAtNumberOfDaysBeforeExpiry",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "emailAtPercentageLifetime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "reuseKeyOnRenewal",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "secretContentType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "subjectName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "validityInMonths",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keyType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "keySize",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "curve",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "exportable",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "certificateTransparency",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
+ "Name": "Name",
"AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "CertificateName"
],
"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": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EmailAtNumberOfDaysBeforeExpiry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -52588,39 +49589,21 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "EmailAtPercentageLifetime",
+ "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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -52632,304 +49615,105 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Undo",
- "NounName": "AzKeyVaultKeyRemoval",
- "Name": "Undo-AzKeyVaultKeyRemoval",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultKeyRemoval",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "Default",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "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": "Default",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "KeyType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "RSA",
+ "RSA-HSM",
+ "EC",
+ "EC-HSM"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeySize",
"AliasList": [],
"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": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "2048",
+ "3072",
+ "4096",
+ "256",
+ "384",
+ "521"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
+ "Name": "CertificateTransparency",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "PassThru",
+ "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.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -52941,82 +49725,36 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "InputObject",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "Curve",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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": [],
+ "ValidateSet": [
+ "P-256",
+ "P-384",
+ "P-521",
+ "P-256K",
+ "SECP256K1"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -53060,360 +49798,95 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ExpandedRenewNumber",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "RenewAtNumberOfDaysBeforeExpiry",
+ "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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Undo",
- "NounName": "AzKeyVaultRemoval",
- "Name": "Undo-AzKeyVaultRemoval",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultRemoval",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "Default",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletionDate": "System.Nullable`1[System.DateTime]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "Id": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "VaultUri": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ {
+ "ParameterMetadata": {
+ "Name": "SecretContentType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "application/x-pkcs12",
+ "application/x-pem-file"
],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "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": "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": "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": "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]"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "Default",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "ReuseKeyOnRenewal",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "Disabled",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53423,16 +49896,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "SubjectName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -53447,24 +49920,28 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 2,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [],
+ "Name": "DnsName",
+ "AliasList": [
+ "DnsNames"
+ ],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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": [],
+ "GenericTypeArguments": [
+ "System.String"
+ ],
"Methods": [],
"Constructors": []
},
@@ -53480,31 +49957,18 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "KeyUsage",
+ "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.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -53516,99 +49980,46 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "InputObject",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "Ekus",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletionDate": "System.Nullable`1[System.DateTime]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "Id": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "VaultUri": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
- },
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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": [],
- "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"
- }
+ "GenericTypeArguments": [
+ "System.String"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "ValidityInMonths",
"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",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -53624,31 +50035,16 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "IssuerName",
+ "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": [],
@@ -53660,20 +50056,15 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "CertificateType",
"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",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53692,31 +50083,16 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "KeyNotExportable",
+ "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.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -53728,227 +50104,7 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Undo",
- "NounName": "AzKeyVaultSecretRemoval",
- "Name": "Undo-AzKeyVaultSecretRemoval",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultSecretRemoval",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "Default",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "SecretValue": "System.Security.SecureString",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "SecretName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "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": "Default",
- "Parameters": [
{
"ParameterMetadata": {
"Name": "VaultName",
@@ -53977,7 +50133,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SecretName"
+ "CertificateName"
],
"Type": {
"Namespace": "System",
@@ -54001,31 +50157,44 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "EmailAtNumberOfDaysBeforeExpiry",
+ "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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EmailAtPercentageLifetime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -54037,113 +50206,58 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "InputObject",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "KeyType",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "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": [],
+ "ValidateSet": [
+ "RSA",
+ "RSA-HSM",
+ "EC",
+ "EC-HSM"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "KeySize",
+ "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.Int32",
+ "AssemblyQualifiedName": "System.Int32, 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": [],
+ "ValidateSet": [
+ "2048",
+ "3072",
+ "4096",
+ "256",
+ "384",
+ "521"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -54151,40 +50265,22 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "CertificateTransparency",
+ "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.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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Boolean"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -54194,357 +50290,17 @@
},
"Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Update",
- "NounName": "AzKeyVault",
- "Name": "Update-AzKeyVault",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateTopLevelResourceCommand",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "UpdateByNameParameterSet",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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": "VaultName",
- "AliasList": [
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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": "EnablePurgeProtection",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EnableRbacAuthorization",
- "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": false
- },
- {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "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": "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": "UpdateByNameParameterSet",
- "Parameters": [
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -54554,19 +50310,17 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "VaultName",
- "AliasList": [
- "Name"
- ],
+ "Name": "Curve",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -54577,31 +50331,110 @@
"Methods": [],
"Constructors": []
},
+ "ValidateSet": [
+ "P-256",
+ "P-384",
+ "P-521",
+ "P-256K",
+ "SECP256K1"
+ ],
+ "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": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ExpandedRenewPercentage",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "RenewAtPercentageLifetime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 0,
+ "ValidateRangeMax": 99,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnablePurgeProtection",
+ "Name": "SecretContentType",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "application/x-pkcs12",
+ "application/x-pem-file"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -54613,7 +50446,7 @@
},
{
"ParameterMetadata": {
- "Name": "EnableRbacAuthorization",
+ "Name": "ReuseKeyOnRenewal",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -54639,14 +50472,12 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "Disabled",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -54661,35 +50492,48 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
+ "Name": "SubjectName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "DnsName",
"AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "DnsNames"
],
"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.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.String"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -54701,116 +50545,46 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "UpdateByInputObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "KeyUsage",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
- },
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Security.Cryptography.X509Certificates.X509KeyUsageFlags, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], 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"
- }
+ "GenericTypeArguments": [
+ "System.Security.Cryptography.X509Certificates.X509KeyUsageFlags"
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnablePurgeProtection",
+ "Name": "Ekus",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, 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": [],
+ "GenericTypeArguments": [
+ "System.String"
+ ],
"Methods": [],
"Constructors": []
},
@@ -54826,16 +50600,16 @@
},
{
"ParameterMetadata": {
- "Name": "EnableRbacAuthorization",
+ "Name": "ValidityInMonths",
"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",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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"
+ "System.Int32"
],
"Methods": [],
"Constructors": []
@@ -54852,14 +50626,12 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "IssuerName",
+ "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",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -54874,35 +50646,20 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "CertificateType",
+ "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": [],
@@ -54914,15 +50671,34 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "UpdateByResourceIdParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "KeyNotExportable",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -54940,18 +50716,20 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnablePurgeProtection",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -54961,6 +50739,32 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EmailAtNumberOfDaysBeforeExpiry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -54970,16 +50774,16 @@
},
{
"ParameterMetadata": {
- "Name": "EnableRbacAuthorization",
+ "Name": "EmailAtPercentageLifetime",
"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",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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"
+ "System.Int32"
],
"Methods": [],
"Constructors": []
@@ -54996,21 +50800,55 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
+ "Name": "KeyType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "RSA",
+ "RSA-HSM",
+ "EC",
+ "EC-HSM"
],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeySize",
+ "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",
+ "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": [],
+ "ValidateSet": [
+ "2048",
+ "3072",
+ "4096",
+ "256",
+ "384",
+ "521"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -55022,31 +50860,18 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "CertificateTransparency",
+ "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.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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Boolean"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -55058,15 +50883,10 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "EnablePurgeProtection",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -55090,47 +50910,25 @@
},
{
"ParameterMetadata": {
- "Name": "EnableRbacAuthorization",
+ "Name": "Curve",
"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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "P-256",
+ "P-384",
+ "P-521",
+ "P-256K",
+ "SECP256K1"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -55185,32 +50983,31 @@
"AliasList": []
},
{
- "VerbName": "Update",
- "NounName": "AzKeyVaultCertificate",
- "Name": "Update-AzKeyVaultCertificate",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultCertificate",
+ "VerbName": "Set",
+ "NounName": "AzKeyVaultSecret",
+ "Name": "Set-AzKeyVaultSecret",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.SetAzureKeyVaultSecret",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByName",
+ "DefaultParameterSetName": "Default",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
"Expires": "System.Nullable`1[System.DateTime]",
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
- "KeyId": "System.String",
- "SecretId": "System.String",
- "Thumbprint": "System.String",
- "RecoveryLevel": "System.String",
+ "SecretValue": "System.Security.SecureString",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
"Version": "System.String",
@@ -55245,7 +51042,13 @@
"ReturnType": "System.Type"
}
],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -55274,7 +51077,7 @@
{
"Name": "Name",
"AliasList": [
- "CertificateName"
+ "SecretName"
],
"Type": {
"Namespace": "System",
@@ -55296,8 +51099,8 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -55305,6 +51108,8 @@
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
"Version": "System.String",
@@ -55353,14 +51158,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Version",
- "AliasList": [
- "CertificateVersion"
- ],
+ "Name": "SecretValue",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55373,16 +51176,34 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Enable",
+ "Name": "Disable",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Expires",
"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",
+ "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.Boolean"
+ "System.DateTime"
],
"Methods": [],
"Constructors": []
@@ -55393,15 +51214,17 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Tag",
+ "Name": "NotBefore",
"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",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
@@ -55411,12 +51234,32 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "PassThru",
+ "Name": "ContentType",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": [],
@@ -55464,7 +51307,7 @@
],
"ParameterSets": [
{
- "Name": "ByName",
+ "Name": "Default",
"Parameters": [
{
"ParameterMetadata": {
@@ -55494,7 +51337,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "CertificateName"
+ "SecretName"
],
"Type": {
"Namespace": "System",
@@ -55518,14 +51361,12 @@
},
{
"ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "CertificateVersion"
- ],
+ "Name": "SecretValue",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55537,23 +51378,47 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Enable",
+ "Name": "Disable",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Expires",
"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",
+ "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.Boolean"
+ "System.DateTime"
],
"Methods": [],
"Constructors": []
@@ -55570,15 +51435,17 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "NotBefore",
"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",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
@@ -55594,12 +51461,38 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "ContentType",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": [],
@@ -55658,7 +51551,7 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "InputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -55666,8 +51559,8 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -55675,6 +51568,8 @@
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
"Version": "System.String",
@@ -55720,26 +51615,74 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SecretValue",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, 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": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Disable",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "CertificateVersion"
- ],
+ "Name": "Expires",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
@@ -55749,22 +51692,22 @@
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Enable",
+ "Name": "NotBefore",
"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",
+ "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.Boolean"
+ "System.DateTime"
],
"Methods": [],
"Constructors": []
@@ -55781,12 +51724,12 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "ContentType",
"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",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55805,12 +51748,14 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -55873,16 +51818,64 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Enable",
+ "Name": "SecretValue",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, 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": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Disable",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Expires",
"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",
+ "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.Boolean"
+ "System.DateTime"
],
"Methods": [],
"Constructors": []
@@ -55899,15 +51892,17 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "NotBefore",
"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",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
@@ -55923,12 +51918,38 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "ContentType",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": [],
@@ -55987,15 +52008,13 @@
]
}
],
- "AliasList": [
- "Set-AzKeyVaultCertificateAttribute"
- ]
+ "AliasList": []
},
{
- "VerbName": "Update",
- "NounName": "AzKeyVaultKey",
- "Name": "Update-AzKeyVaultKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultKey",
+ "VerbName": "Stop",
+ "NounName": "AzKeyVaultCertificateOperation",
+ "Name": "Stop-AzKeyVaultCertificateOperation",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.StopAzureKeyVaultCertificateOperation",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -56004,23 +52023,21 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
+ "CancellationRequested": "System.Nullable`1[System.Boolean]",
+ "Id": "System.String",
+ "Status": "System.String",
+ "StatusDetails": "System.String",
+ "RequestId": "System.String",
+ "Target": "System.String",
+ "Issuer": "System.String",
+ "CertificateSigningRequest": "System.String",
+ "ErrorCode": "System.String",
+ "ErrorMessage": "System.String",
"Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "VaultName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56086,7 +52103,7 @@
{
"Name": "Name",
"AliasList": [
- "KeyName"
+ "CertificateName"
],
"Type": {
"Namespace": "System",
@@ -56108,21 +52125,21 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
+ "CancellationRequested": "System.Nullable`1[System.Boolean]",
+ "Id": "System.String",
+ "Status": "System.String",
+ "StatusDetails": "System.String",
+ "RequestId": "System.String",
+ "Target": "System.String",
+ "Issuer": "System.String",
+ "CertificateSigningRequest": "System.String",
+ "ErrorCode": "System.String",
+ "ErrorMessage": "System.String",
"Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "VaultName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56167,125 +52184,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Version",
- "AliasList": [
- "KeyVersion"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Enable",
- "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": false
- },
- {
- "Name": "Expires",
- "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": false
- },
- {
- "Name": "NotBefore",
- "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": false
- },
- {
- "Name": "KeyOps",
- "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": false
- },
- {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "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": "PassThru",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -56309,201 +52208,47 @@
"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": "Default",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Version",
- "AliasList": [
- "KeyVersion"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": 2,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Enable",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Expires",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "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": "Default",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "VaultName",
"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"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "KeyOps",
- "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": []
@@ -56511,23 +52256,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "Name",
"AliasList": [
- "Tags"
+ "CertificateName"
],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56537,16 +52282,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -56618,21 +52363,21 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
+ "CancellationRequested": "System.Nullable`1[System.Boolean]",
+ "Id": "System.String",
+ "Status": "System.String",
+ "StatusDetails": "System.String",
+ "RequestId": "System.String",
+ "Target": "System.String",
+ "Issuer": "System.String",
+ "CertificateSigningRequest": "System.String",
+ "ErrorCode": "System.String",
+ "ErrorMessage": "System.String",
"Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "VaultName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56683,118 +52428,14 @@
},
{
"ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "KeyVersion"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": 2,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Enable",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Expires",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "Force",
"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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.DateTime"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "KeyOps",
- "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": []
@@ -56811,18 +52452,31 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "DefaultProfile",
"AliasList": [
- "Tags"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"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": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -56834,10 +52488,15 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -56899,126 +52558,295 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Undo",
+ "NounName": "AzKeyVaultCertificateRemoval",
+ "Name": "Undo-AzKeyVaultCertificateRemoval",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultCertificateRemoval",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Default",
+ "OutputTypes": [
{
- "Name": "__AllParameterSets",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "KeyVersion"
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
+ "KeyId": "System.String",
+ "SecretId": "System.String",
+ "Thumbprint": "System.String",
+ "RecoveryLevel": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
],
- "Type": {
- "Namespace": "System",
- "Name": "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
+ "ReturnType": "System.Boolean"
},
- "Mandatory": false,
- "Position": 2,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "Enable",
- "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": false
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ {
+ "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": "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": "Default",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Expires",
+ "Name": "VaultName",
"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": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NotBefore",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
"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": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyOps",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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",
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -57030,45 +52858,108 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "InputObject",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "InputObject",
+ "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": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -57080,7 +52971,12 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -57123,16 +53019,13 @@
]
}
],
- "AliasList": [
- "Set-AzKeyVaultKey",
- "Set-AzKeyVaultKeyAttribute"
- ]
+ "AliasList": []
},
{
- "VerbName": "Update",
- "NounName": "AzKeyVaultSecret",
- "Name": "Update-AzKeyVaultSecret",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultSecret",
+ "VerbName": "Undo",
+ "NounName": "AzKeyVaultKeyRemoval",
+ "Name": "Undo-AzKeyVaultKeyRemoval",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultKeyRemoval",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -57141,18 +53034,19 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
+ "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
"Expires": "System.Nullable`1[System.DateTime]",
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "SecretValue": "System.Security.SecureString",
- "ContentType": "System.String",
+ "RecoveryLevel": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -57220,10 +53114,28 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "HsmName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
"AliasList": [
- "SecretName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -57245,16 +53157,19 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
"Expires": "System.Nullable`1[System.DateTime]",
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
+ "RecoveryLevel": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -57303,142 +53218,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "Version",
- "AliasList": [
- "SecretVersion"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Enable",
- "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": false
- },
- {
- "Name": "Expires",
- "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": false
- },
- {
- "Name": "NotBefore",
- "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": false
- },
- {
- "Name": "ContentType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Tag",
- "AliasList": [
- "Tags"
- ],
- "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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -57505,7 +53284,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SecretName"
+ "KeyName"
],
"Type": {
"Namespace": "System",
@@ -57529,96 +53308,31 @@
},
{
"ParameterMetadata": {
- "Name": "Version",
+ "Name": "DefaultProfile",
"AliasList": [
- "SecretVersion"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": 2,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Enable",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Expires",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NotBefore",
- "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": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -57630,10 +53344,15 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "HsmInteractive",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "ContentType",
+ "Name": "HsmName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -57648,47 +53367,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "Name",
"AliasList": [
- "Tags"
+ "KeyName"
],
"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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -57698,10 +53393,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -57755,16 +53450,19 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
"Expires": "System.Nullable`1[System.DateTime]",
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
+ "RecoveryLevel": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -57820,44 +53518,31 @@
},
{
"ParameterMetadata": {
- "Name": "Version",
+ "Name": "DefaultProfile",
"AliasList": [
- "SecretVersion"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": 2,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Enable",
- "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": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -57869,21 +53554,39 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Expires",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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": {},
+ "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": [
- "System.DateTime"
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -57895,36 +53598,291 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Undo",
+ "NounName": "AzKeyVaultRemoval",
+ "Name": "Undo-AzKeyVaultRemoval",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultRemoval",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Default",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "NotBefore",
- "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": false
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ {
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletionDate": "System.Nullable`1[System.DateTime]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "Id": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "VaultUri": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": []
+ },
+ "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": "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": "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": "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": "Default",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "ContentType",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -57939,47 +53897,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "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
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -57989,63 +53921,17 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "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": "Version",
- "AliasList": [
- "SecretVersion"
- ],
+ "Name": "Location",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -58059,26 +53945,24 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Enable",
+ "Name": "Tag",
"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",
+ "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": [
- "System.Boolean"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -58094,18 +53978,31 @@
},
{
"ParameterMetadata": {
- "Name": "Expires",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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": {},
+ "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": [
- "System.DateTime"
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -58117,41 +54014,96 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "InputObject",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "InputObject",
"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": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletionDate": "System.Nullable`1[System.DateTime]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "Id": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "VaultUri": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
- "GenericTypeArguments": [
- "System.DateTime"
+ "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"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ContentType",
+ "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": null,
"GenericTypeArguments": [],
@@ -58170,18 +54122,31 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "DefaultProfile",
"AliasList": [
- "Tags"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"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": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -58193,15 +54158,20 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Tag",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -58260,15 +54230,13 @@
]
}
],
- "AliasList": [
- "Set-AzKeyVaultSecretAttribute"
- ]
+ "AliasList": []
},
{
- "VerbName": "Update",
- "NounName": "AzManagedHsmKey",
- "Name": "Update-AzManagedHsmKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureManagedHsmKey",
+ "VerbName": "Undo",
+ "NounName": "AzKeyVaultSecretRemoval",
+ "Name": "Undo-AzKeyVaultSecretRemoval",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UndoAzureKeyVaultSecretRemoval",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -58277,18 +54245,18 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
"Expires": "System.Nullable`1[System.DateTime]",
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
+ "SecretValue": "System.Security.SecureString",
+ "ContentType": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -58339,7 +54307,7 @@
],
"Parameters": [
{
- "Name": "HsmName",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -58359,7 +54327,7 @@
{
"Name": "Name",
"AliasList": [
- "KeyName"
+ "SecretName"
],
"Type": {
"Namespace": "System",
@@ -58381,16 +54349,18 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
"Expires": "System.Nullable`1[System.DateTime]",
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
+ "ContentType": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -58439,142 +54409,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "Version",
- "AliasList": [
- "KeyVersion"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Enable",
- "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": false
- },
- {
- "Name": "Expires",
- "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": false
- },
- {
- "Name": "NotBefore",
- "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": false
- },
- {
- "Name": "KeyOps",
- "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": false
- },
- {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -58615,192 +54449,12 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "HsmName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Version",
- "AliasList": [
- "KeyVersion"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": 2,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Enable",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Expires",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NotBefore",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "KeyOps",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "VaultName",
+ "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",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -58810,21 +54464,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SecretName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -58834,10 +54490,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -58891,16 +54547,18 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
+ "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
+ "DeletedDate": "System.Nullable`1[System.DateTime]",
"Expires": "System.Nullable`1[System.DateTime]",
"NotBefore": "System.Nullable`1[System.DateTime]",
"Created": "System.Nullable`1[System.DateTime]",
"Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
+ "ContentType": "System.String",
"TagsTable": "System.String",
"VaultName": "System.String",
"Name": "System.String",
@@ -58954,184 +54612,6 @@
"ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "KeyVersion"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": 2,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Enable",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Expires",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NotBefore",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "KeyOps",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -59176,184 +54656,6 @@
{
"Name": "__AllParameterSets",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Version",
- "AliasList": [
- "KeyVersion"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": 2,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Enable",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Expires",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NotBefore",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "KeyOps",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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",
@@ -59396,132 +54698,23 @@
]
}
],
- "AliasList": [
- "Set-AzManagedHsmKey",
- "Set-AzManagedHsmKeyAttribute"
- ]
+ "AliasList": []
},
{
- "VerbName": "Add",
- "NounName": "AzKeyVaultNetworkRule",
- "Name": "Add-AzKeyVaultNetworkRule",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.AddAzureKeyVaultNetworkRule",
+ "VerbName": "Update",
+ "NounName": "AzKeyVault",
+ "Name": "Update-AzKeyVault",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateTopLevelResourceCommand",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByVaultName",
+ "DefaultParameterSetName": "UpdateByNameParameterSet",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "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": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "VaultName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -59597,14 +54790,35 @@
}
]
},
+ "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": "ResourceId",
- "AliasList": [],
+ "Name": "VaultName",
+ "AliasList": [
+ "Name"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -59621,7 +54835,94 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceGroupName",
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -59639,14 +54940,14 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "IpAddressRange",
+ "Name": "EnablePurgeProtection",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -59657,15 +54958,17 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "VirtualNetworkResourceId",
+ "Name": "EnableRbacAuthorization",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": "System.String",
- "GenericTypeArguments": [],
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
@@ -59675,12 +54978,14 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -59728,11 +55033,11 @@
],
"ParameterSets": [
{
- "Name": "ByVaultName",
+ "Name": "UpdateByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -59750,14 +55055,16 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "VaultName",
+ "AliasList": [
+ "Name"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -59773,21 +55080,21 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 1,
+ "Mandatory": true,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IpAddressRange",
+ "Name": "EnablePurgeProtection",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -59804,15 +55111,17 @@
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
+ "Name": "EnableRbacAuthorization",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": "System.String",
- "GenericTypeArguments": [],
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
@@ -59828,12 +55137,14 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -59848,7 +55159,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -59892,7 +55203,7 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "UpdateByInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -59901,7 +55212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -59980,23 +55291,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IpAddressRange",
+ "Name": "EnablePurgeProtection",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -60013,15 +55324,17 @@
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
+ "Name": "EnableRbacAuthorization",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": "System.String",
- "GenericTypeArguments": [],
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
@@ -60037,12 +55350,14 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -60057,7 +55372,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -60101,7 +55416,7 @@
]
},
{
- "Name": "ByResourceId",
+ "Name": "UpdateByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -60123,20 +55438,20 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "IpAddressRange",
+ "Name": "EnablePurgeProtection",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -60153,15 +55468,17 @@
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
+ "Name": "EnableRbacAuthorization",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": "System.String",
- "GenericTypeArguments": [],
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
@@ -60177,12 +55494,14 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -60197,7 +55516,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -60245,14 +55564,14 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "IpAddressRange",
+ "Name": "EnablePurgeProtection",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -60269,15 +55588,17 @@
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
+ "Name": "EnableRbacAuthorization",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": "System.String",
- "GenericTypeArguments": [],
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
@@ -60293,12 +55614,14 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
@@ -60313,7 +55636,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -60360,27 +55683,36 @@
"AliasList": []
},
{
- "VerbName": "New",
- "NounName": "AzKeyVaultNetworkRuleSetObject",
- "Name": "New-AzKeyVaultNetworkRuleSetObject",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.NewAzureKeyVaultNetworkRuleSetObject",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
+ "VerbName": "Update",
+ "NounName": "AzKeyVaultCertificate",
+ "Name": "Update-AzKeyVaultCertificate",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultCertificate",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "__AllParameterSets",
+ "DefaultParameterSetName": "ByName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
- "DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
- "IpAddressRanges": "System.Collections.Generic.IList`1[System.String]",
- "VirtualNetworkResourceIds": "System.Collections.Generic.IList`1[System.String]",
- "IpAddressRangesText": "System.String",
- "VirtualNetworkResourceIdsText": "System.String"
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
+ "KeyId": "System.String",
+ "SecretId": "System.String",
+ "Thumbprint": "System.String",
+ "RecoveryLevel": "System.String",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60411,35 +55743,7 @@
"ReturnType": "System.Type"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "defaultAction",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "bypass",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "ipAddressRanges",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "virtualNetworkResourceId",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -60448,94 +55752,84 @@
],
"Parameters": [
{
- "Name": "DefaultAction",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.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": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "CertificateName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
+ },
+ "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",
+ "Name": "Equals",
"Parameters": [
{
- "Name": "flag",
+ "Name": "obj",
"Type": "System.Reflection.RuntimeParameterInfo"
}
],
"ReturnType": "System.Boolean"
},
{
- "Name": "GetTypeCode",
+ "Name": "GetHashCode",
"Parameters": [],
- "ReturnType": "System.TypeCode"
+ "ReturnType": "System.Int32"
},
{
"Name": "GetType",
@@ -60543,6 +55837,52 @@
"ReturnType": "System.Type"
}
],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Version",
+ "AliasList": [
+ "CertificateVersion"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Enable",
+ "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": [],
@@ -60551,272 +55891,315 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Bypass",
+ "Name": "Tag",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "ToString",
+ "Name": "Clear",
"Parameters": [],
- "ReturnType": "System.String"
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ToString",
- "Parameters": [
- {
- "Name": "format",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "provider",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "CertificateName"
],
- "ReturnType": "System.String"
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "CompareTo",
- "Parameters": [
- {
- "Name": "target",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Version",
+ "AliasList": [
+ "CertificateVersion"
],
- "ReturnType": "System.Int32"
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ToString",
- "Parameters": [
- {
- "Name": "format",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.String"
+ "Mandatory": false,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enable",
+ "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": false
},
- {
- "Name": "ToString",
- "Parameters": [
- {
- "Name": "provider",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.String"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "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
},
- {
- "Name": "HasFlag",
- "Parameters": [
- {
- "Name": "flag",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetTypeCode",
- "Parameters": [],
- "ReturnType": "System.TypeCode"
+ "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
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "IpAddressRange",
- "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": false
- },
- {
- "Name": "VirtualNetworkResourceId",
- "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": false
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": 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": "__AllParameterSets",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DefaultAction",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "VaultName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
+ },
"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",
+ "Name": "Equals",
"Parameters": [
{
- "Name": "flag",
+ "Name": "obj",
"Type": "System.Reflection.RuntimeParameterInfo"
}
],
"ReturnType": "System.Boolean"
},
{
- "Name": "GetTypeCode",
+ "Name": "GetHashCode",
"Parameters": [],
- "ReturnType": "System.TypeCode"
+ "ReturnType": "System.Int32"
},
{
"Name": "GetType",
@@ -60824,6 +56207,64 @@
"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": "Version",
+ "AliasList": [
+ "CertificateVersion"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enable",
+ "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": [],
@@ -60838,99 +56279,77 @@
},
{
"ParameterMetadata": {
- "Name": "Bypass",
+ "Name": "Tag",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "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",
+ "Name": "Clear",
"Parameters": [],
- "ReturnType": "System.Type"
+ "ReturnType": "System.Void"
}
],
"Constructors": []
@@ -60944,17 +56363,48 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "IpAddressRange",
+ "Name": "Enable",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": "System.String",
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "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": []
@@ -60971,14 +56421,14 @@
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -61035,46 +56485,41 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Set-AzKeyVaultCertificateAttribute"
+ ]
},
{
- "VerbName": "Remove",
- "NounName": "AzKeyVaultNetworkRule",
- "Name": "Remove-AzKeyVaultNetworkRule",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureRmKeyVaultNetworkRule",
+ "VerbName": "Update",
+ "NounName": "AzKeyVaultKey",
+ "Name": "Update-AzKeyVaultKey",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultKey",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByVaultName",
+ "DefaultParameterSetName": "Default",
"OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
+ "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
+ "IsHsm": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "RecoveryLevel": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61110,20 +56555,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -61151,36 +56582,65 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "HsmName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "RecoveryLevel": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61216,20 +56676,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -61239,8 +56685,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
- "AliasList": [],
+ "Name": "Version",
+ "AliasList": [
+ "KeyVersion"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -61254,36 +56702,40 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "ResourceGroupName",
+ "Name": "Enable",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "IpAddressRange",
+ "Name": "Expires",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": "System.String",
- "GenericTypeArguments": [],
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
@@ -61293,7 +56745,27 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "VirtualNetworkResourceId",
+ "Name": "NotBefore",
+ "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": false
+ },
+ {
+ "Name": "KeyOps",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -61310,6 +56782,26 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "PassThru",
"AliasList": [],
@@ -61364,12 +56856,336 @@
],
"ParameterSets": [
{
- "Name": "ByVaultName",
+ "Name": "Default",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Version",
+ "AliasList": [
+ "KeyVersion"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enable",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Expires",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NotBefore",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeyOps",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "HsmInteractive",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VaultName",
- "AliasList": [],
+ "Name": "HsmName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "KeyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Version",
+ "AliasList": [
+ "KeyVersion"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -61383,48 +57199,52 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "Enable",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IpAddressRange",
+ "Name": "Expires",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": "System.String",
- "GenericTypeArguments": [],
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
@@ -61440,7 +57260,33 @@
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
+ "Name": "NotBefore",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeyOps",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -61462,6 +57308,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "PassThru",
@@ -61528,7 +57400,7 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "InputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -61536,31 +57408,22 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
+ "IsHsm": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "RecoveryLevel": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61596,20 +57459,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -61625,14 +57474,16 @@
},
{
"ParameterMetadata": {
- "Name": "IpAddressRange",
- "AliasList": [],
+ "Name": "Version",
+ "AliasList": [
+ "KeyVersion"
+ ],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -61643,13 +57494,91 @@
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enable",
+ "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": false
+ },
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
+ "Name": "Expires",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NotBefore",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeyOps",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -61671,6 +57600,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "PassThru",
@@ -61737,12 +57692,14 @@
]
},
{
- "Name": "ByResourceId",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
- "AliasList": [],
+ "Name": "Version",
+ "AliasList": [
+ "KeyVersion"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -61756,48 +57713,26 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "IpAddressRange",
- "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": false
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
+ "Name": "Enable",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": "System.String",
- "GenericTypeArguments": [],
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
@@ -61813,15 +57748,17 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Expires",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
@@ -61837,31 +57774,18 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "NotBefore",
+ "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.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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.DateTime"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -61873,15 +57797,10 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "IpAddressRange",
+ "Name": "KeyOps",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -61905,14 +57824,16 @@
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"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": []
@@ -61993,46 +57914,41 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Set-AzKeyVaultKey",
+ "Set-AzKeyVaultKeyAttribute"
+ ]
},
{
"VerbName": "Update",
- "NounName": "AzKeyVaultNetworkRuleSet",
- "Name": "Update-AzKeyVaultNetworkRuleSet",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultNetworkRuleSet",
+ "NounName": "AzKeyVaultSecret",
+ "Name": "Update-AzKeyVaultSecret",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultSecret",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByVaultName",
+ "DefaultParameterSetName": "Default",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
+ "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
"Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "SecretValue": "System.Security.SecureString",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62068,20 +57984,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -62109,36 +58011,46 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "Name",
+ "AliasList": [
+ "SecretName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62168,27 +58080,13 @@
"Parameters": [],
"ReturnType": "System.Type"
}
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
]
},
"ValidateSet": [],
@@ -62197,8 +58095,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
- "AliasList": [],
+ "Name": "Version",
+ "AliasList": [
+ "SecretVersion"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -62212,37 +58112,39 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "ResourceGroupName",
+ "Name": "Enable",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [],
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "DefaultAction",
+ "Name": "Expires",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum"
+ "System.DateTime"
],
"Methods": [],
"Constructors": []
@@ -62253,16 +58155,16 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Bypass",
+ "Name": "NotBefore",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum"
+ "System.DateTime"
],
"Methods": [],
"Constructors": []
@@ -62273,14 +58175,14 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "IpAddressRange",
+ "Name": "ContentType",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -62291,14 +58193,16 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "VirtualNetworkResourceId",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"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": []
@@ -62362,7 +58266,7 @@
],
"ParameterSets": [
{
- "Name": "ByVaultName",
+ "Name": "Default",
"Parameters": [
{
"ParameterMetadata": {
@@ -62390,8 +58294,10 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "SecretName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -62407,23 +58313,49 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultAction",
+ "Name": "Version",
+ "AliasList": [
+ "SecretVersion"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enable",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum"
+ "System.Boolean"
],
"Methods": [],
"Constructors": []
@@ -62436,20 +58368,20 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Bypass",
+ "Name": "Expires",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum"
+ "System.DateTime"
],
"Methods": [],
"Constructors": []
@@ -62462,19 +58394,21 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IpAddressRange",
+ "Name": "NotBefore",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": "System.String",
- "GenericTypeArguments": [],
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
@@ -62490,14 +58424,40 @@
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
+ "Name": "ContentType",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": []
@@ -62578,7 +58538,7 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "InputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -62586,31 +58546,21 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
- "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
- "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "ContentType": "System.String",
+ "TagsTable": "System.String",
"VaultName": "System.String",
- "ResourceId": "System.String",
- "VaultUri": "System.String",
- "AccessPoliciesText": "System.String",
- "Sku": "System.String",
- "TenantName": "System.String",
- "NetworkAclsText": "System.String",
- "TagsTable": "System.String"
+ "Name": "System.String",
+ "Version": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62646,20 +58596,6 @@
"Name": "",
"ReturnType": null,
"Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "vault",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
},
@@ -62675,16 +58611,42 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultAction",
+ "Name": "Version",
+ "AliasList": [
+ "SecretVersion"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enable",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum"
+ "System.Boolean"
],
"Methods": [],
"Constructors": []
@@ -62697,20 +58659,20 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Bypass",
+ "Name": "Expires",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum"
+ "System.DateTime"
],
"Methods": [],
"Constructors": []
@@ -62723,19 +58685,21 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IpAddressRange",
+ "Name": "NotBefore",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": "System.String",
- "GenericTypeArguments": [],
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
"Methods": [],
"Constructors": []
},
@@ -62751,14 +58715,40 @@
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
+ "Name": "ContentType",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": []
@@ -62839,12 +58829,14 @@
]
},
{
- "Name": "ByResourceId",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
- "AliasList": [],
+ "Name": "Version",
+ "AliasList": [
+ "SecretVersion"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -62858,51 +58850,25 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultAction",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 2,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Bypass",
+ "Name": "Enable",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum"
+ "System.Boolean"
],
"Methods": [],
"Constructors": []
@@ -62915,136 +58881,20 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "IpAddressRange",
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
- "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": false
- },
- "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.4.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": "DefaultAction",
+ "Name": "Expires",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum"
+ "System.DateTime"
],
"Methods": [],
"Constructors": []
@@ -63057,20 +58907,20 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Bypass",
+ "Name": "NotBefore",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "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": [
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum"
+ "System.DateTime"
],
"Methods": [],
"Constructors": []
@@ -63083,18 +58933,18 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IpAddressRange",
+ "Name": "ContentType",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -63111,14 +58961,16 @@
},
{
"ParameterMetadata": {
- "Name": "VirtualNetworkResourceId",
- "AliasList": [],
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"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": []
@@ -63199,28 +59051,99 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Set-AzKeyVaultSecretAttribute"
+ ]
},
{
- "VerbName": "Backup",
- "NounName": "AzManagedHsmSecurityDomain",
- "Name": "Backup-AzManagedHsmSecurityDomain",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Cmdlets.BackupSecurityDomain",
+ "VerbName": "Add",
+ "NounName": "AzKeyVaultNetworkRule",
+ "Name": "Add-AzKeyVaultNetworkRule",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.AddAzureKeyVaultNetworkRule",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByName",
+ "DefaultParameterSetName": "ByVaultName",
"OutputTypes": [
{
"Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -63229,14 +59152,14 @@
],
"Parameters": [
{
- "Name": "Certificates",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -63247,17 +59170,86 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "OutputPath",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -63265,12 +59257,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Force",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -63280,15 +59272,15 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "PassThru",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -63298,37 +59290,35 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "Quorum",
+ "Name": "IpAddressRange",
"AliasList": [],
"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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
- "ValidateRangeMax": 10,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Name",
- "AliasList": [
- "HsmName"
- ],
+ "Name": "VirtualNetworkResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -63336,69 +59326,20 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "InputObject",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "TagsTable": "System.String"
- },
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "resource",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -63441,18 +59382,18 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "ByVaultName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Certificates",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], 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": "System.String",
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -63463,13 +59404,13 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "OutputPath",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63486,21 +59427,45 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IpAddressRange",
+ "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": false
+ },
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "VirtualNetworkResourceId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -63524,7 +59489,192 @@
"Name": "System.Management.Automation.SwitchParameter",
"AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": null,
+ "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": "ByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IpAddressRange",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VirtualNetworkResourceId",
+ "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": []
@@ -63541,12 +59691,12 @@
},
{
"ParameterMetadata": {
- "Name": "Quorum",
+ "Name": "PassThru",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -63554,11 +59704,11 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
- "ValidateRangeMax": 10,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -63605,14 +59755,12 @@
]
},
{
- "Name": "ByName",
+ "Name": "ByResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "HsmName"
- ],
+ "Name": "ResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -63629,13 +59777,13 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Certificates",
+ "Name": "IpAddressRange",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63650,47 +59798,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "OutputPath",
+ "Name": "VirtualNetworkResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "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": 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -63729,30 +59853,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "Quorum",
- "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": 2,
- "ValidateRangeMax": 10,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -63795,84 +59895,11 @@
]
},
{
- "Name": "ByInputObject",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "TagsTable": "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": "resource",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Certificates",
+ "Name": "IpAddressRange",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63887,47 +59914,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "OutputPath",
+ "Name": "VirtualNetworkResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "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": 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -63966,30 +59969,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "Quorum",
- "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": 2,
- "ValidateRangeMax": 10,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -64035,25 +60014,86 @@
"AliasList": []
},
{
- "VerbName": "Restore",
- "NounName": "AzManagedHsmSecurityDomain",
- "Name": "Restore-AzManagedHsmSecurityDomain",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Cmdlets.RestoreSecurityDomain",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
+ "VerbName": "New",
+ "NounName": "AzKeyVaultNetworkRuleSetObject",
+ "Name": "New-AzKeyVaultNetworkRuleSetObject",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.NewAzureKeyVaultNetworkRuleSetObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByName",
+ "DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
{
"Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
+ "DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
+ "IpAddressRanges": "System.Collections.Generic.IList`1[System.String]",
+ "VirtualNetworkResourceIds": "System.Collections.Generic.IList`1[System.String]",
+ "IpAddressRangesText": "System.String",
+ "VirtualNetworkResourceIdsText": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "defaultAction",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "bypass",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "ipAddressRanges",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "virtualNetworkResourceId",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -64062,54 +60102,204 @@
],
"Parameters": [
{
- "Name": "Keys",
+ "Name": "DefaultAction",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "SecurityDomainPath",
- "AliasList": [
- "Path"
- ],
- "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "PassThru",
+ "Name": "Bypass",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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": [],
@@ -64118,16 +60308,14 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Name",
- "AliasList": [
- "HsmName"
- ],
+ "Name": "IpAddressRange",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -64135,69 +60323,20 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "InputObject",
+ "Name": "VirtualNetworkResourceId",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "TagsTable": "System.String"
- },
- "ElementType": null,
+ "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": [
- {
- "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": "resource",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -64244,247 +60383,99 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Keys",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SecurityDomainPath",
- "AliasList": [
- "Path"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
- {
- "ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "DefaultAction",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.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",
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
"Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByName",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "HsmName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
- {
- "ParameterMetadata": {
- "Name": "Keys",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SecurityDomainPath",
- "AliasList": [
- "Path"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": 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.4.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": [
+ "ReturnType": "System.Int32"
+ },
{
- "Name": "Clear",
+ "Name": "ToString",
"Parameters": [],
- "ReturnType": "System.Void"
+ "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": []
@@ -64498,36 +60489,19 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByInputObject",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "Bypass",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "ResourceId": "System.String",
- "VaultName": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "TagsTable": "System.String"
- },
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
{
"Name": "Equals",
"Parameters": [
@@ -64544,75 +60518,97 @@
"ReturnType": "System.Int32"
},
{
- "Name": "GetType",
+ "Name": "ToString",
"Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
+ "ReturnType": "System.String"
+ },
{
- "Name": "",
- "ReturnType": null,
- "Parameters": []
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
},
{
- "Name": "",
- "ReturnType": null,
+ "Name": "CompareTo",
"Parameters": [
{
- "Name": "resource",
+ "Name": "target",
"Type": "System.Reflection.RuntimeParameterInfo"
}
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Keys",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath",
- "GenericTypeArguments": [],
- "Methods": [],
+ ],
+ "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
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SecurityDomainPath",
- "AliasList": [
- "Path"
- ],
+ "Name": "IpAddressRange",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -64620,23 +60616,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "VirtualNetworkResourceId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -64696,35 +60692,43 @@
"AliasList": []
},
{
- "VerbName": "Add",
- "NounName": "AzManagedHsmKey",
- "Name": "Add-AzManagedHsmKey",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.Commands.AddAzureManagedHsmKey",
+ "VerbName": "Remove",
+ "NounName": "AzKeyVaultNetworkRule",
+ "Name": "Remove-AzKeyVaultNetworkRule",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.RemoveAzureRmKeyVaultNetworkRule",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "InteractiveCreate",
+ "DefaultParameterSetName": "ByVaultName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
"VaultName": "System.String",
- "Name": "System.String",
- "Version": "System.String",
- "Id": "System.String"
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64760,6 +60764,20 @@
"Name": "",
"ReturnType": null,
"Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
}
]
},
@@ -64770,7 +60788,7 @@
],
"Parameters": [
{
- "Name": "HsmName",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -64792,27 +60810,31 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
"EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
"SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
"Location": "System.String",
"ResourceGroupName": "System.String",
"VaultName": "System.String",
"ResourceId": "System.String",
- "Name": "System.String",
- "StatusMessage": "System.String",
- "HsmUri": "System.String",
- "TenantName": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
"Sku": "System.String",
- "ProvisioningState": "System.String",
- "TagsTable": "System.String",
- "InitialAdminObjectIds": "System.String[]"
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64854,7 +60876,7 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "managedHsm",
+ "Name": "vault",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -64889,27 +60911,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "KeyFilePath",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -64927,68 +60929,14 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "KeyFilePassword",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, 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": "System",
- "Name": "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": "CurveName",
+ "Name": "IpAddressRange",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "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": "Disable",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -64999,7 +60947,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "KeyOps",
+ "Name": "VirtualNetworkResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -65017,54 +60965,12 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Expires",
- "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": false
- },
- {
- "Name": "NotBefore",
+ "Name": "PassThru",
"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": false
- },
- {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65076,26 +60982,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- {
- "Name": "Size",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -65113,37 +60999,294 @@
"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": "InteractiveCreate",
- "Parameters": [
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByVaultName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": false,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IpAddressRange",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VirtualNetworkResourceId",
+ "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": false
+ },
+ "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.4.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": "ByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
- "Name": "HsmName",
+ "Name": "IpAddressRange",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -65151,23 +61294,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyType",
+ "Name": "VirtualNetworkResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -65177,24 +61320,22 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Size",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -65210,10 +61351,52 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "DefaultProfile",
"AliasList": [
- "KeyName"
+ "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": "ByResourceId",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -65230,20 +61413,44 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 1,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IpAddressRange",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CurveName",
+ "Name": "VirtualNetworkResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -65260,7 +61467,7 @@
},
{
"ParameterMetadata": {
- "Name": "Disable",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -65284,16 +61491,31 @@
},
{
"ParameterMetadata": {
- "Name": "KeyOps",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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",
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -65305,20 +61527,23 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Expires",
+ "Name": "IpAddressRange",
"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"
- ],
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -65334,17 +61559,15 @@
},
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "VirtualNetworkResourceId",
"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"
- ],
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -65360,14 +61583,12 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65424,13 +61645,382 @@
"ValueFromPipelineByPropertyName": false
}
]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzKeyVaultNetworkRuleSet",
+ "Name": "Update-AzKeyVaultNetworkRuleSet",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultNetworkRuleSet",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByVaultName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "VaultName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
+ "Tags": "System.Collections.Hashtable",
+ "TenantId": "System.Guid",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
+ "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
+ "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "VaultName": "System.String",
+ "ResourceId": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
+ "Sku": "System.String",
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "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": "vault",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "adClient",
+ "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": 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": "DefaultAction",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Bypass",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "InteractiveImport",
+ "Name": "IpAddressRange",
+ "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": false
+ },
+ {
+ "Name": "VirtualNetworkResourceId",
+ "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": false
+ },
+ {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "ByVaultName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "HsmName",
+ "Name": "VaultName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -65454,7 +62044,7 @@
},
{
"ParameterMetadata": {
- "Name": "KeyFilePath",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -65471,72 +62061,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "KeyFilePassword",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, 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": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "CurveName",
+ "Name": "DefaultAction",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [],
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum"
+ ],
"Methods": [],
"Constructors": []
},
@@ -65548,19 +62090,21 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Disable",
+ "Name": "Bypass",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [],
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum"
+ ],
"Methods": [],
"Constructors": []
},
@@ -65572,11 +62116,11 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "KeyOps",
+ "Name": "IpAddressRange",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -65600,17 +62144,15 @@
},
{
"ParameterMetadata": {
- "Name": "Expires",
+ "Name": "VirtualNetworkResourceId",
"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"
- ],
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -65626,40 +62168,12 @@
},
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "PassThru",
"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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65718,7 +62232,7 @@
]
},
{
- "Name": "InputObjectCreate",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
@@ -65726,27 +62240,31 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
+ "AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
+ "NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
+ "OriginalVault": "Microsoft.Azure.Management.KeyVault.Models.Vault",
+ "EnabledForDeployment": "System.Boolean",
"Tags": "System.Collections.Hashtable",
"TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnabledForTemplateDeployment": "System.Nullable`1[System.Boolean]",
+ "EnabledForDiskEncryption": "System.Nullable`1[System.Boolean]",
"EnableSoftDelete": "System.Nullable`1[System.Boolean]",
+ "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
+ "EnableRbacAuthorization": "System.Nullable`1[System.Boolean]",
"SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
"Location": "System.String",
"ResourceGroupName": "System.String",
"VaultName": "System.String",
"ResourceId": "System.String",
- "Name": "System.String",
- "StatusMessage": "System.String",
- "HsmUri": "System.String",
- "TenantName": "System.String",
+ "VaultUri": "System.String",
+ "AccessPoliciesText": "System.String",
"Sku": "System.String",
- "ProvisioningState": "System.String",
- "TagsTable": "System.String",
- "InitialAdminObjectIds": "System.String[]"
+ "TenantName": "System.String",
+ "NetworkAclsText": "System.String",
+ "TagsTable": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65788,7 +62306,7 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "managedHsm",
+ "Name": "vault",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -65811,15 +62329,17 @@
},
{
"ParameterMetadata": {
- "Name": "KeyType",
+ "Name": "DefaultAction",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [],
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum"
+ ],
"Methods": [],
"Constructors": []
},
@@ -65828,23 +62348,23 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Size",
+ "Name": "Bypass",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
- "System.Int32"
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum"
],
"Methods": [],
"Constructors": []
@@ -65857,20 +62377,18 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
+ "Name": "IpAddressRange",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -65878,23 +62396,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CurveName",
+ "Name": "VirtualNetworkResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -65911,7 +62429,7 @@
},
{
"ParameterMetadata": {
- "Name": "Disable",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -65935,16 +62453,31 @@
},
{
"ParameterMetadata": {
- "Name": "KeyOps",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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",
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -65956,19 +62489,48 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceId",
+ "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": "Expires",
+ "Name": "DefaultAction",
"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.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
- "System.DateTime"
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum"
],
"Methods": [],
"Constructors": []
@@ -65981,20 +62543,20 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "Bypass",
"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.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
- "System.DateTime"
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum"
],
"Methods": [],
"Constructors": []
@@ -66007,20 +62569,18 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "IpAddressRange",
+ "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",
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -66037,31 +62597,16 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "VirtualNetworkResourceId",
+ "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]"
- },
- "ElementType": null,
+ "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": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -66073,161 +62618,137 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "InputObjectImport",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
- "Tags": "System.Collections.Hashtable",
- "TenantId": "System.Guid",
- "EnablePurgeProtection": "System.Nullable`1[System.Boolean]",
- "EnableSoftDelete": "System.Nullable`1[System.Boolean]",
- "SoftDeleteRetentionInDays": "System.Nullable`1[System.Int32]",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "VaultName": "System.String",
- "ResourceId": "System.String",
- "Name": "System.String",
- "StatusMessage": "System.String",
- "HsmUri": "System.String",
- "TenantName": "System.String",
- "Sku": "System.String",
- "ProvisioningState": "System.String",
- "TagsTable": "System.String",
- "InitialAdminObjectIds": "System.String[]"
- },
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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"
- },
+ "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": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "managedHsm",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "adClient",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "KeyFilePath",
+ "Name": "DefaultAction",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [],
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "KeyFilePassword",
+ "Name": "Bypass",
"AliasList": [],
"Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [],
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
+ "Name": "IpAddressRange",
+ "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -66235,23 +62756,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CurveName",
+ "Name": "VirtualNetworkResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -66268,7 +62789,7 @@
},
{
"ParameterMetadata": {
- "Name": "Disable",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -66292,7 +62813,293 @@
},
{
"ParameterMetadata": {
- "Name": "KeyOps",
+ "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": "Export",
+ "NounName": "AzKeyVaultSecurityDomain",
+ "Name": "Export-AzKeyVaultSecurityDomain",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Cmdlets.BackupSecurityDomain",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByName",
+ "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": "Certificates",
+ "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": "OutputPath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Quorum",
+ "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": 2,
+ "ValidateRangeMax": 10,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "HsmName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "TagsTable": "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": "resource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Certificates",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -66307,52 +63114,48 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Expires",
+ "Name": "OutputPath",
"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": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "Force",
"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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.DateTime"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -66368,14 +63171,12 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66392,6 +63193,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Quorum",
+ "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": 2,
+ "ValidateRangeMax": 10,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -66434,11 +63259,61 @@
]
},
{
- "Name": "ResourceIdCreate",
+ "Name": "ByName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "Name",
+ "AliasList": [
+ "HsmName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Certificates",
+ "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OutputPath",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -66456,18 +63331,18 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyType",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66479,24 +63354,22 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Size",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -66512,14 +63385,12 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
+ "Name": "Quorum",
+ "AliasList": [],
"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": [],
@@ -66527,27 +63398,42 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateRangeMin": 2,
+ "ValidateRangeMax": 10,
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CurveName",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -66559,34 +63445,88 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByInputObject",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Disable",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "resource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyOps",
+ "Name": "Certificates",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -66601,52 +63541,48 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Expires",
+ "Name": "OutputPath",
"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": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "Force",
"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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.DateTime"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -66662,14 +63598,12 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66686,6 +63620,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Quorum",
+ "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": 2,
+ "ValidateRangeMax": 10,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -66726,68 +63684,228 @@
"ValueFromPipelineByPropertyName": false
}
]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Import",
+ "NounName": "AzKeyVaultSecurityDomain",
+ "Name": "Import-AzKeyVaultSecurityDomain",
+ "ClassName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Cmdlets.RestoreSecurityDomain",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByName",
+ "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": "Keys",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceIdImport",
- "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
+ "Name": "SecurityDomainPath",
+ "AliasList": [
+ "Path"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "HsmName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "KeyFilePath",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ {
+ "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": "resource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "KeyFilePassword",
+ "Name": "Keys",
"AliasList": [],
"Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": null,
+ "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -66797,16 +63915,16 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "SecurityDomainPath",
"AliasList": [
- "KeyName"
+ "Path"
],
"Type": {
"Namespace": "System",
@@ -66824,37 +63942,13 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 1,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "CurveName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Disable",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -66878,16 +63972,31 @@
},
{
"ParameterMetadata": {
- "Name": "KeyOps",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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",
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -66899,69 +64008,96 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByName",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Expires",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "HsmName"
+ ],
"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": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "Keys",
"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",
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.DateTime"
- ],
+ "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath",
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "SecurityDomainPath",
"AliasList": [
- "Tags"
+ "Path"
],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "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": 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -67020,92 +64156,91 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "CurveName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Disable",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Hashtable",
+ "ResourceId": "System.String",
+ "VaultName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "resource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyOps",
+ "Name": "Keys",
"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.KeyVault.SecurityDomain.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": "System.String",
+ "ElementType": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -67113,75 +64248,47 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Expires",
- "AliasList": [],
+ "Name": "SecurityDomainPath",
+ "AliasList": [
+ "Path"
+ ],
"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": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NotBefore",
+ "Name": "PassThru",
"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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -67244,8 +64351,8 @@
},
{
"VerbName": "Backup",
- "NounName": "AzManagedHsm",
- "Name": "Backup-AzManagedHsm",
+ "NounName": "AzKeyVault",
+ "Name": "Backup-AzKeyVault",
"ClassName": "Microsoft.Azure.Commands.KeyVault.Commands.BackupAzureManagedHsm",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
@@ -67270,10 +64377,8 @@
],
"Parameters": [
{
- "Name": "Name",
- "AliasList": [
- "HsmName"
- ],
+ "Name": "HsmName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -67367,7 +64472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
@@ -67484,10 +64589,8 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "HsmName"
- ],
+ "Name": "HsmName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -67602,10 +64705,8 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "HsmName"
- ],
+ "Name": "HsmName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -67773,7 +64874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
@@ -67978,7 +65079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
@@ -68198,8 +65299,8 @@
},
{
"VerbName": "Restore",
- "NounName": "AzManagedHsm",
- "Name": "Restore-AzManagedHsm",
+ "NounName": "AzKeyVault",
+ "Name": "Restore-AzKeyVault",
"ClassName": "Microsoft.Azure.Commands.KeyVault.Commands.RestoreAzureManagedHsm",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
@@ -68260,10 +65361,8 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Name",
- "AliasList": [
- "HsmName"
- ],
+ "Name": "HsmName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -68357,7 +65456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
@@ -68590,10 +65689,8 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "HsmName"
- ],
+ "Name": "HsmName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -68756,10 +65853,8 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "HsmName"
- ],
+ "Name": "HsmName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -68975,7 +66070,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
@@ -69228,7 +66323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
@@ -69440,7 +66535,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsNames": "System.Collections.Generic.List`1[System.String]",
"KeyUsage": "System.Collections.Generic.List`1[System.String]",
@@ -69638,7 +66733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -69832,7 +66927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -69982,8 +67077,8 @@
},
{
"VerbName": "Get",
- "NounName": "AzManagedHsm",
- "Name": "Get-AzManagedHsm",
+ "NounName": "AzKeyVaultManagedHsm",
+ "Name": "Get-AzKeyVaultManagedHsm",
"ClassName": "Microsoft.Azure.Commands.KeyVault.Commands.GetAzureManagedHsm",
"SupportsShouldProcess": false,
"ConfirmImpact": 0,
@@ -69994,7 +67089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
@@ -70074,7 +67169,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceId": "System.String",
@@ -70362,7 +67457,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FirstName": "System.String",
"LastName": "System.String",
@@ -70676,7 +67771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
"Id": "System.String"
@@ -70748,7 +67843,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -70831,7 +67926,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -70896,8 +67991,8 @@
},
{
"VerbName": "New",
- "NounName": "AzManagedHsm",
- "Name": "New-AzManagedHsm",
+ "NounName": "AzKeyVaultManagedHsm",
+ "Name": "New-AzKeyVaultManagedHsm",
"ClassName": "Microsoft.Azure.Commands.KeyVault.Commands.NewAzureManagedHsm",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
@@ -70908,7 +68003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
@@ -71372,8 +68467,8 @@
},
{
"VerbName": "Get",
- "NounName": "AzManagedHsmRoleAssignment",
- "Name": "Get-AzManagedHsmRoleAssignment",
+ "NounName": "AzKeyVaultRoleAssignment",
+ "Name": "Get-AzKeyVaultRoleAssignment",
"ClassName": "Microsoft.Azure.Commands.KeyVault.Commands.GetAzureManagedHsmRoleAssignment",
"SupportsShouldProcess": false,
"ConfirmImpact": 0,
@@ -71384,7 +68479,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -72079,8 +69174,8 @@
},
{
"VerbName": "Get",
- "NounName": "AzManagedHsmRoleDefinition",
- "Name": "Get-AzManagedHsmRoleDefinition",
+ "NounName": "AzKeyVaultRoleDefinition",
+ "Name": "Get-AzKeyVaultRoleDefinition",
"ClassName": "Microsoft.Azure.Commands.KeyVault.Commands.GetAzureManagedHsmRoleDefinition",
"SupportsShouldProcess": false,
"ConfirmImpact": 0,
@@ -72091,7 +69186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Permissions": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission[]",
"Id": "System.String",
@@ -72460,8 +69555,8 @@
},
{
"VerbName": "New",
- "NounName": "AzManagedHsmRoleAssignment",
- "Name": "New-AzManagedHsmRoleAssignment",
+ "NounName": "AzKeyVaultRoleAssignment",
+ "Name": "New-AzKeyVaultRoleAssignment",
"ClassName": "Microsoft.Azure.Commands.KeyVault.Commands.NewAzureManagedHsmRoleAssignment",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
@@ -72472,7 +69567,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -73678,8 +70773,8 @@
},
{
"VerbName": "Remove",
- "NounName": "AzManagedHsmRoleAssignment",
- "Name": "Remove-AzManagedHsmRoleAssignment",
+ "NounName": "AzKeyVaultRoleAssignment",
+ "Name": "Remove-AzKeyVaultRoleAssignment",
"ClassName": "Microsoft.Azure.Commands.KeyVault.Commands.RemoveAzureManagedHsmRoleAssignment",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
@@ -73690,7 +70785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -73918,7 +71013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -75291,7 +72386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -75452,478 +72547,10 @@
],
"AliasList": []
},
- {
- "VerbName": "Undo",
- "NounName": "AzManagedHsmKeyRemoval",
- "Name": "Undo-AzManagedHsmKeyRemoval",
- "ClassName": "Microsoft.Azure.Commands.KeyVault.Commands.UndoAzureManagedHsmKeyRemoval",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "Default",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": "HsmName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "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": "Default",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "HsmName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "KeyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "InputObject",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "ScheduledPurgeDate": "System.Nullable`1[System.DateTime]",
- "DeletedDate": "System.Nullable`1[System.DateTime]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "RecoveryLevel": "System.String",
- "TagsTable": "System.String",
- "VaultName": "System.String",
- "Name": "System.String",
- "Version": "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": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": true,
- "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": "Update",
- "NounName": "AzManagedHsm",
- "Name": "Update-AzManagedHsm",
+ "NounName": "AzKeyVaultManagedHsm",
+ "Name": "Update-AzKeyVaultManagedHsm",
"ClassName": "Microsoft.Azure.Commands.KeyVault.Commands.UpdateAzureManagedHsm",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
@@ -75934,7 +72561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
@@ -76056,7 +72683,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
@@ -76336,7 +72963,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSManagedHsm, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OriginalManagedHsm": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
"Tags": "System.Collections.Hashtable",
@@ -77056,7 +73683,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy",
"GenericTypeArguments": [],
@@ -77066,7 +73693,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PermissionsToKeys": "System.Collections.Generic.List`1[System.String]",
"PermissionsToSecrets": "System.Collections.Generic.List`1[System.String]",
@@ -77188,7 +73815,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
"DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
@@ -77259,7 +73886,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77364,7 +73991,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -78499,7 +75126,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TagsDirectionary": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
@@ -78862,183 +75489,6 @@
}
]
},
- "System.Security.Cryptography.X509Certificates.X509Certificate2": {
- "Namespace": "System.Security.Cryptography.X509Certificates",
- "Name": "System.Security.Cryptography.X509Certificates.X509Certificate2",
- "AssemblyQualifiedName": "System.Security.Cryptography.X509Certificates.X509Certificate2, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
- "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": []
- }
- ]
- },
- "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails"
- ],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "FirstName": "System.String",
- "LastName": "System.String",
- "EmailAddress": "System.String",
- "PhoneNumber": "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": []
- }
- ]
- },
- "System.Security.SecureString": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes": {
- "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
- "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "TagsDictionary": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
- "Tags": "System.Collections.Hashtable",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "Expires": "System.Nullable`1[System.DateTime]",
- "NotBefore": "System.Nullable`1[System.DateTime]",
- "Created": "System.Nullable`1[System.DateTime]",
- "Updated": "System.Nullable`1[System.DateTime]",
- "ContentType": "System.String",
- "RecoveryLevel": "System.String",
- "TagsTable": "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.Management.KeyVault.Models.ManagedHsm": {
"Namespace": "Microsoft.Azure.Management.KeyVault.Models",
"Name": "Microsoft.Azure.Management.KeyVault.Models.ManagedHsm",
@@ -79377,10 +75827,187 @@
],
"Constructors": []
},
+ "System.Security.Cryptography.X509Certificates.X509Certificate2": {
+ "Namespace": "System.Security.Cryptography.X509Certificates",
+ "Name": "System.Security.Cryptography.X509Certificates.X509Certificate2",
+ "AssemblyQualifiedName": "System.Security.Cryptography.X509Certificates.X509Certificate2, System.Security.Cryptography.X509Certificates, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
+ "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": []
+ }
+ ]
+ },
+ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "FirstName": "System.String",
+ "LastName": "System.String",
+ "EmailAddress": "System.String",
+ "PhoneNumber": "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": []
+ }
+ ]
+ },
+ "System.Security.SecureString": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes": {
+ "Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
+ "Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "TagsDictionary": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
+ "Tags": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Expires": "System.Nullable`1[System.DateTime]",
+ "NotBefore": "System.Nullable`1[System.DateTime]",
+ "Created": "System.Nullable`1[System.DateTime]",
+ "Updated": "System.Nullable`1[System.DateTime]",
+ "ContentType": "System.String",
+ "RecoveryLevel": "System.String",
+ "TagsTable": "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.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"Created": "System.Nullable`1[System.DateTime]",
@@ -79454,7 +76081,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"Created": "System.Nullable`1[System.DateTime]",
@@ -79516,7 +76143,7 @@
"Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.SecurityDomain.Models.KeyPath, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"PrivateKey": "System.String",
@@ -79562,7 +76189,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission[]": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission",
"GenericTypeArguments": [],
@@ -79572,7 +76199,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultPermission, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowedActions": "System.String[]",
"DeniedActions": "System.String[]",
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 f9f5c13af90e..328e989d1442 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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -1666,7 +1666,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -1737,7 +1737,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -1806,7 +1806,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -2096,7 +2096,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Threshold": "System.Nullable`1[System.Double]",
"ThresholdOperator": "System.String",
@@ -2415,7 +2415,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -2653,7 +2653,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -2977,7 +2977,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MetricTrigger": "Microsoft.Azure.Management.Monitor.Models.LogMetricTrigger",
"Threshold": "System.Double",
@@ -3078,7 +3078,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Threshold": "System.Nullable`1[System.Double]",
"ThresholdOperator": "System.String",
@@ -3225,7 +3225,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Threshold": "System.Nullable`1[System.Double]",
"ThresholdOperator": "System.String",
@@ -3361,7 +3361,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -3545,7 +3545,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -3975,7 +3975,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -4049,7 +4049,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -4140,7 +4140,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -4205,7 +4205,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -4268,7 +4268,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -4498,7 +4498,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -4577,7 +4577,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -4648,7 +4648,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -4717,7 +4717,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -4976,7 +4976,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -5047,7 +5047,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -5116,7 +5116,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -5351,7 +5351,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -5422,7 +5422,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -5491,7 +5491,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -5849,7 +5849,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -5923,7 +5923,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -6107,7 +6107,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -6513,7 +6513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -6977,7 +6977,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScopedResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScopedResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScopedResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -7127,7 +7127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -7397,7 +7397,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -7657,7 +7657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -8099,7 +8099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScopedResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScopedResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScopedResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -8249,7 +8249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -8611,7 +8611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -8856,7 +8856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -9146,7 +9146,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -9429,7 +9429,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -9699,7 +9699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -9959,7 +9959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -10069,7 +10069,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -10345,7 +10345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -10701,7 +10701,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetric, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "Microsoft.Azure.Management.Monitor.Models.LocalizableString",
"Unit": "Microsoft.Azure.Management.Monitor.Models.Unit",
@@ -11632,7 +11632,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDefinition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "Microsoft.Azure.Management.Monitor.Models.LocalizableString",
"Dimensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LocalizableString]",
@@ -12197,7 +12197,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RetentionPolicy": "Microsoft.Azure.Management.Monitor.Models.RetentionPolicy",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -12623,7 +12623,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfileCollection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Item": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile",
"Count": "System.Int32",
@@ -13559,9 +13559,1230 @@
},
{
"VerbName": "Get",
+ "NounName": "AzDiagnosticSettingCategory",
+ "Name": "Get-AzDiagnosticSettingCategory",
+ "ClassName": "Microsoft.Azure.Commands.Insights.Diagnostics.GetAzureRmDiagnosticSettingCategoryCommand",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
+ "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategory",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategory, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CategoryType": "System.Nullable`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategoryType]",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "category",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": "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": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "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": 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": "AzDiagnosticSetting",
+ "Name": "Get-AzDiagnosticSetting",
+ "ClassName": "Microsoft.Azure.Commands.Insights.Diagnostics.GetAzureRmDiagnosticSettingCommand",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LogSettings]",
+ "Metrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricSettings]",
+ "Location": "System.String",
+ "StorageAccountId": "System.String",
+ "ServiceBusRuleId": "System.String",
+ "EventHubAuthorizationRuleId": "System.String",
+ "EventHubName": "System.String",
+ "WorkspaceId": "System.String",
+ "LogAnalyticsDestinationType": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "id",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "serviceDiagnosticSettings",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "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": "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": "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": "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": "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": 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
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzDiagnosticDetailSetting",
+ "Name": "New-AzDiagnosticDetailSetting",
+ "ClassName": "Microsoft.Azure.Commands.Insights.Diagnostics.NewAzureRmDiagnosticDetailSettingCommand",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "MetricSettingParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
+ "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticDetailSettings",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticDetailSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CategoryType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategoryType",
+ "RetentionPolicy": "Microsoft.Azure.Commands.Insights.OutputClasses.PSRetentionPolicy",
+ "Enabled": "System.Boolean",
+ "Category": "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": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Log",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Metric",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RetentionInDays",
+ "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": false
+ },
+ {
+ "Name": "RetentionEnabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Category",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TimeGrain",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
+ ],
+ "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": "LogSettingParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Log",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "RetentionInDays",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionEnabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Category",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "MetricSettingParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Metric",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "TimeGrain",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionInDays",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionEnabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Category",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "RetentionInDays",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionEnabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Category",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "New",
"NounName": "AzDiagnosticSetting",
- "Name": "Get-AzDiagnosticSetting",
- "ClassName": "Microsoft.Azure.Commands.Insights.Diagnostics.GetAzureRmDiagnosticSettingCommand",
+ "Name": "New-AzDiagnosticSetting",
+ "ClassName": "Microsoft.Azure.Commands.Insights.Diagnostics.NewAzureRmDiagnosticSettingCommand",
"SupportsShouldProcess": false,
"ConfirmImpact": 0,
"SupportsPaging": false,
@@ -13571,11 +14792,11 @@
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]",
- "Metrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings]",
+ "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LogSettings]",
+ "Metrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricSettings]",
"Location": "System.String",
"StorageAccountId": "System.String",
"ServiceBusRuleId": "System.String",
@@ -13617,6 +14838,25 @@
}
],
"Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "id",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ },
{
"Name": "",
"ReturnType": null,
@@ -13636,7 +14876,7 @@
],
"Parameters": [
{
- "Name": "ResourceId",
+ "Name": "TargetResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -13671,6 +14911,132 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "StorageAccountId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ServiceBusRuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "EventHubName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "EventHubAuthorizationRuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "DedicatedLogAnalyticsDestinationType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Setting",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
+ "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticDetailSettings[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticDetailSettings[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticDetailSettings",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -13711,7 +15077,7 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "TargetResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -13729,7 +15095,7 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
@@ -13752,6 +15118,174 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageAccountId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "ServiceBusRuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "EventHubName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "EventHubAuthorizationRuleId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "DedicatedLogAnalyticsDestinationType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Setting",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
+ "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticDetailSettings[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticDetailSettings[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticDetailSettings",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -14043,11 +15577,11 @@
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]",
- "Metrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings]",
+ "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LogSettings]",
+ "Metrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricSettings]",
"Location": "System.String",
"StorageAccountId": "System.String",
"ServiceBusRuleId": "System.String",
@@ -14089,6 +15623,25 @@
}
],
"Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "id",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ },
{
"Name": "",
"ReturnType": null,
@@ -14113,11 +15666,11 @@
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]",
- "Metrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings]",
+ "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LogSettings]",
+ "Metrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricSettings]",
"Location": "System.String",
"StorageAccountId": "System.String",
"ServiceBusRuleId": "System.String",
@@ -14159,6 +15712,25 @@
}
],
"Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "id",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ },
{
"Name": "",
"ReturnType": null,
@@ -14519,11 +16091,11 @@
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]",
- "Metrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings]",
+ "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LogSettings]",
+ "Metrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricSettings]",
"Location": "System.String",
"StorageAccountId": "System.String",
"ServiceBusRuleId": "System.String",
@@ -14565,6 +16137,25 @@
}
],
"Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "id",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ },
{
"Name": "",
"ReturnType": null,
@@ -15127,7 +16718,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAutoscaleSettingOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SettingSpec": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource",
"StatusCode": "System.Net.HttpStatusCode",
@@ -15184,7 +16775,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
@@ -15328,7 +16919,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15366,7 +16957,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15427,7 +17018,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
@@ -15553,7 +17144,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15579,7 +17170,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15747,7 +17338,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15797,7 +17388,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15918,7 +17509,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
"Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
@@ -16354,7 +17945,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
@@ -16689,7 +18280,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Email": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification",
"Webhooks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification]",
@@ -16754,7 +18345,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification",
"GenericTypeArguments": [],
@@ -16865,7 +18456,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification",
"GenericTypeArguments": [],
@@ -17012,7 +18603,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Recurrence": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence",
"Capacity": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity",
@@ -17210,7 +18801,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17391,7 +18982,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -17403,7 +18994,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
"Name": "DefaultProfile",
@@ -17546,7 +19137,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -17558,7 +19149,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -17784,7 +19375,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -17796,7 +19387,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -17950,7 +19541,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18161,7 +19752,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18173,7 +19764,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -18282,7 +19873,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MetricTrigger": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger",
"ScaleAction": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction"
@@ -18401,7 +19992,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18504,7 +20095,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18625,7 +20216,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18782,7 +20373,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18885,7 +20476,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19093,7 +20684,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19202,7 +20793,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19335,7 +20926,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19516,7 +21107,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19625,7 +21216,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19809,7 +21400,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ServiceUri": "System.String"
@@ -20323,7 +21914,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AlertRule": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource",
"StatusCode": "System.Net.HttpStatusCode",
@@ -20396,7 +21987,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20553,7 +22144,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -20665,7 +22256,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -20748,7 +22339,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20929,7 +22520,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21077,7 +22668,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21154,7 +22745,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -21386,7 +22977,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21639,7 +23230,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21957,7 +23548,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -22325,7 +23916,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -22524,7 +24115,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AlertRule": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource",
"StatusCode": "System.Net.HttpStatusCode",
@@ -22761,7 +24352,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -23062,7 +24653,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -23139,7 +24730,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
"Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
@@ -23575,7 +25166,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition",
"IsEnabled": "System.Boolean",
@@ -24142,7 +25733,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -24600,7 +26191,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleEmailAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomEmails": "System.Collections.Generic.IList`1[System.String]",
"SendToServiceOwners": "System.Nullable`1[System.Boolean]"
@@ -24838,7 +26429,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleWebhookAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ServiceUri": "System.String"
@@ -25076,7 +26667,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CriterionType": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType",
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
@@ -25144,7 +26735,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDynamicMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CriterionType": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType",
"FailingPeriods": "Microsoft.Azure.Management.Monitor.Models.DynamicThresholdFailingPeriods",
@@ -25308,7 +26899,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension",
"GenericTypeArguments": [],
@@ -25653,7 +27244,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension",
"GenericTypeArguments": [],
@@ -26089,7 +27680,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension",
"GenericTypeArguments": [],
@@ -26280,7 +27871,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IncludeValues": "System.Collections.Generic.IList`1[System.String]",
"ExcludeValues": "System.Collections.Generic.IList`1[System.String]",
@@ -26917,7 +28508,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -27331,7 +28922,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -27607,7 +29198,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
"Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
@@ -29151,7 +30742,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -29259,7 +30850,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -29479,7 +31070,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -29719,7 +31310,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -29827,7 +31418,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -30047,7 +31638,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -30287,7 +31878,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -30645,7 +32236,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WebhookProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ActionGroupId": "System.String"
@@ -30894,7 +32485,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Field": "System.String",
"Equals": "System.String"
@@ -31227,7 +32818,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -31447,7 +33038,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -31687,7 +33278,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -31833,7 +33424,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -31853,7 +33444,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -31930,7 +33521,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -32156,7 +33747,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32182,7 +33773,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32377,7 +33968,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32403,7 +33994,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32598,7 +34189,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32624,7 +34215,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -32701,7 +34292,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -32873,7 +34464,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -33239,7 +34830,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String"
},
@@ -36000,7 +37591,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -36278,7 +37869,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -36458,7 +38049,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -36592,7 +38183,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -36669,7 +38260,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -36859,7 +38450,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -37004,7 +38595,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -37224,7 +38815,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -37818,6 +39409,8 @@
"Properties": {
"OnPremise": "System.Boolean",
"VersionProfiles": "System.Collections.Generic.IList`1[System.String]",
+ "Name": "System.String",
+ "AdTenant": "System.String",
"AzureDataLakeStoreFileSystemEndpointSuffix": "System.String",
"AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String",
"BatchEndpointResourceId": "System.String",
@@ -37827,7 +39420,6 @@
"AzureKeyVaultDnsSuffix": "System.String",
"TrafficManagerDnsSuffix": "System.String",
"SqlDatabaseDnsSuffix": "System.String",
- "StorageEndpointSuffix": "System.String",
"ActiveDirectoryServiceEndpointResourceId": "System.String",
"GraphUrl": "System.String",
"GalleryUrl": "System.String",
@@ -37836,8 +39428,8 @@
"ManagementPortalUrl": "System.String",
"ResourceManagerUrl": "System.String",
"ServiceManagementUrl": "System.String",
- "AdTenant": "System.String",
- "Name": "System.String"
+ "StorageEndpointSuffix": "System.String",
+ "ContainerRegistryEndpointSuffix": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38982,7 +40574,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RetentionPolicy": "Microsoft.Azure.Management.Monitor.Models.RetentionPolicy",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -39045,7 +40637,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -39079,7 +40671,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -39091,7 +40683,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -39103,7 +40695,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile",
"GenericTypeArguments": [],
@@ -39120,40 +40712,26 @@
"Methods": [],
"Constructors": []
},
- "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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "System.Nullable`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategoryType]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategoryType]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategoryType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
- "Microsoft.Azure.Management.Monitor.Management.Models.LogSettings"
+ "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategoryType"
],
"Methods": [],
"Constructors": []
},
- "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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "RetentionPolicy": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy",
- "Enabled": "System.Boolean",
- "Category": "System.String"
- },
+ "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategoryType": {
+ "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
+ "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategoryType",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategoryType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
- {
- "Name": "Validate",
- "Parameters": [],
- "ReturnType": "System.Void"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
{
"Name": "Equals",
"Parameters": [
@@ -39170,59 +40748,68 @@
"ReturnType": "System.Int32"
},
{
- "Name": "GetType",
+ "Name": "ToString",
"Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
+ "ReturnType": "System.String"
+ },
{
- "Name": "",
- "ReturnType": null,
+ "Name": "ToString",
"Parameters": [
{
- "Name": "logSettings",
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
"Type": "System.Reflection.RuntimeParameterInfo"
}
- ]
- }
- ]
- },
- "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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Enabled": "System.Boolean",
- "Days": "System.Int32"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
{
"Name": "ToString",
- "Parameters": [],
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
"ReturnType": "System.String"
},
{
- "Name": "Validate",
- "Parameters": [],
- "ReturnType": "System.Void"
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
},
{
- "Name": "Equals",
+ "Name": "HasFlag",
"Parameters": [
{
- "Name": "obj",
+ "Name": "flag",
"Type": "System.Reflection.RuntimeParameterInfo"
}
],
"ReturnType": "System.Boolean"
},
{
- "Name": "GetHashCode",
+ "Name": "GetTypeCode",
"Parameters": [],
- "ReturnType": "System.Int32"
+ "ReturnType": "System.TypeCode"
},
{
"Name": "GetType",
@@ -39230,39 +40817,27 @@
"ReturnType": "System.Type"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "retentionPolicy",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Constructors": []
},
- "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings]": {
+ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LogSettings]": {
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LogSettings]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.LogSettings, Microsoft.Azure.Management.Monitor, Version=0.25.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
- "Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings"
+ "Microsoft.Azure.Management.Monitor.Models.LogSettings"
],
"Methods": [],
"Constructors": []
},
- "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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Microsoft.Azure.Management.Monitor.Models.LogSettings": {
+ "Namespace": "Microsoft.Azure.Management.Monitor.Models",
+ "Name": "Microsoft.Azure.Management.Monitor.Models.LogSettings",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.LogSettings, Microsoft.Azure.Management.Monitor, Version=0.25.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "RetentionPolicy": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy",
+ "RetentionPolicy": "Microsoft.Azure.Management.Monitor.Models.RetentionPolicy",
"Enabled": "System.Boolean",
- "TimeGrain": "System.Nullable`1[System.TimeSpan]",
"Category": "System.String"
},
"ElementType": null,
@@ -39300,37 +40875,51 @@
}
],
"Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
{
"Name": "",
"ReturnType": null,
"Parameters": [
{
- "Name": "metricSettings",
+ "Name": "enabled",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "category",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "retentionPolicy",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
}
]
},
- "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LogSettings]": {
+ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricSettings]": {
"Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LogSettings]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.LogSettings, Microsoft.Azure.Management.Monitor, Version=0.25.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricSettings]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.MetricSettings, Microsoft.Azure.Management.Monitor, Version=0.25.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
- "Microsoft.Azure.Management.Monitor.Models.LogSettings"
+ "Microsoft.Azure.Management.Monitor.Models.MetricSettings"
],
"Methods": [],
"Constructors": []
},
- "Microsoft.Azure.Management.Monitor.Models.LogSettings": {
+ "Microsoft.Azure.Management.Monitor.Models.MetricSettings": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
- "Name": "Microsoft.Azure.Management.Monitor.Models.LogSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.LogSettings, Microsoft.Azure.Management.Monitor, Version=0.25.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Management.Monitor.Models.MetricSettings",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricSettings, Microsoft.Azure.Management.Monitor, Version=0.25.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RetentionPolicy": "Microsoft.Azure.Management.Monitor.Models.RetentionPolicy",
"Enabled": "System.Boolean",
+ "TimeGrain": "System.Nullable`1[System.TimeSpan]",
"Category": "System.String"
},
"ElementType": null,
@@ -39381,6 +40970,10 @@
"Name": "enabled",
"Type": "System.Reflection.RuntimeParameterInfo"
},
+ {
+ "Name": "timeGrain",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
{
"Name": "category",
"Type": "System.Reflection.RuntimeParameterInfo"
@@ -39393,40 +40986,26 @@
}
]
},
- "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricSettings]": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricSettings]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.MetricSettings, Microsoft.Azure.Management.Monitor, Version=0.25.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "Microsoft.Azure.Management.Monitor.Models.MetricSettings"
- ],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.Management.Monitor.Models.MetricSettings": {
- "Namespace": "Microsoft.Azure.Management.Monitor.Models",
- "Name": "Microsoft.Azure.Management.Monitor.Models.MetricSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricSettings, Microsoft.Azure.Management.Monitor, Version=0.25.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Microsoft.Azure.Commands.Insights.OutputClasses.PSRetentionPolicy": {
+ "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
+ "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSRetentionPolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "RetentionPolicy": "Microsoft.Azure.Management.Monitor.Models.RetentionPolicy",
"Enabled": "System.Boolean",
- "TimeGrain": "System.Nullable`1[System.TimeSpan]",
- "Category": "System.String"
+ "Days": "System.Int32"
},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
{
- "Name": "Validate",
+ "Name": "ToString",
"Parameters": [],
- "ReturnType": "System.Void"
+ "ReturnType": "System.String"
},
{
- "Name": "ToString",
+ "Name": "Validate",
"Parameters": [],
- "ReturnType": "System.String"
+ "ReturnType": "System.Void"
},
{
"Name": "Equals",
@@ -39459,18 +41038,6 @@
"Name": "",
"ReturnType": null,
"Parameters": [
- {
- "Name": "enabled",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "timeGrain",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "category",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
{
"Name": "retentionPolicy",
"Type": "System.Reflection.RuntimeParameterInfo"
@@ -39479,10 +41046,51 @@
}
]
},
+ "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticDetailSettings": {
+ "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
+ "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticDetailSettings",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticDetailSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CategoryType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDiagnosticSettingCategoryType",
+ "RetentionPolicy": "Microsoft.Azure.Commands.Insights.OutputClasses.PSRetentionPolicy",
+ "Enabled": "System.Boolean",
+ "Category": "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": []
+ },
"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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
@@ -39545,7 +41153,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -39557,7 +41165,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Email": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification",
"Webhooks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification]",
@@ -39613,7 +41221,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomEmails": "System.Collections.Generic.IList`1[System.String]",
"SendToSubscriptionCoAdministrators": "System.Nullable`1[System.Boolean]",
@@ -39733,7 +41341,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -39745,7 +41353,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ServiceUri": "System.String"
@@ -39871,7 +41479,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -39883,7 +41491,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Recurrence": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence",
"Capacity": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity",
@@ -39946,7 +41554,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Frequency": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency",
"Schedule": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule"
@@ -40006,7 +41614,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40101,7 +41709,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Hours": "System.Collections.Generic.IList`1[System.Nullable`1[System.Int32]]",
"Minutes": "System.Collections.Generic.IList`1[System.Nullable`1[System.Int32]]",
@@ -40344,7 +41952,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Minimum": "System.String",
"Maximum": "System.String",
@@ -40405,7 +42013,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeWindow, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Start": "System.DateTime",
"End": "System.DateTime",
@@ -40668,7 +42276,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -40680,7 +42288,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MetricTrigger": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger",
"ScaleAction": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction"
@@ -40754,7 +42362,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OperatorProperty": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType",
"Statistic": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType",
@@ -40822,7 +42430,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40917,7 +42525,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41012,7 +42620,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41473,7 +43081,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Direction": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection",
"Type": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType",
@@ -41535,7 +43143,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41630,7 +43238,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42332,7 +43940,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "System.Collections.Generic.IDictionary`2[System.String,System.String]"
},
@@ -42391,7 +43999,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scope": "System.String",
"Action": "System.String",
@@ -42438,7 +44046,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataHttpRequest, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientId": "System.String",
"Method": "System.String",
@@ -42725,7 +44333,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition",
"IsEnabled": "System.Boolean",
@@ -42794,7 +44402,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSource": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource"
},
@@ -42848,7 +44456,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceUri": "System.String"
},
@@ -43010,7 +44618,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43022,7 +44630,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43118,7 +44726,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43364,7 +44972,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43376,7 +44984,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CriterionType": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType"
},
@@ -43388,7 +44996,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43699,7 +45307,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IncludeValues": "System.Collections.Generic.IList`1[System.String]",
"ExcludeValues": "System.Collections.Generic.IList`1[System.String]",
@@ -43758,7 +45366,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActionGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]"
},
@@ -43812,7 +45420,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43824,7 +45432,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WebhookProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ActionGroupId": "System.String"
@@ -43896,7 +45504,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllOf": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]"
},
@@ -43950,7 +45558,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43962,7 +45570,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Field": "System.String",
"Equals": "System.String"
@@ -44211,7 +45819,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44223,7 +45831,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"RoleId": "System.String",
@@ -44279,7 +45887,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44291,7 +45899,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsGlobalRunbook": "System.Boolean",
"UseCommonAlertSchema": "System.Boolean",
@@ -44351,7 +45959,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44363,7 +45971,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EmailAddress": "System.String",
"Name": "System.String"
@@ -44418,7 +46026,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44430,7 +46038,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"FunctionAppResourceId": "System.String",
@@ -44488,7 +46096,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44500,7 +46108,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"Status": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]",
@@ -44557,7 +46165,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44569,7 +46177,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44664,7 +46272,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44676,7 +46284,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WorkspaceId": "System.String",
"ConnectionId": "System.String",
@@ -44734,7 +46342,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44746,7 +46354,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"ResourceId": "System.String",
@@ -44803,7 +46411,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44815,7 +46423,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]",
"CountryCode": "System.String",
@@ -44872,7 +46480,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44884,7 +46492,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CountryCode": "System.String",
"PhoneNumber": "System.String",
@@ -44940,7 +46548,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44952,7 +46560,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"UseAadAuth": "System.Boolean",
@@ -45012,7 +46620,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=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String"
},
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll.json
index a1c3d2a3a32f..610d114e43e9 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -183,7 +183,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -496,7 +496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -663,7 +663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -940,7 +940,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -992,7 +992,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationId": "System.String",
"EndpointType": "System.String",
@@ -1048,7 +1048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotPolicyId": "System.String"
},
@@ -1100,7 +1100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -1285,7 +1285,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -1678,7 +1678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -1736,7 +1736,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationId": "System.String",
"EndpointType": "System.String",
@@ -1798,7 +1798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotPolicyId": "System.String"
},
@@ -1856,7 +1856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -2207,7 +2207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -2265,7 +2265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationId": "System.String",
"EndpointType": "System.String",
@@ -2327,7 +2327,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotPolicyId": "System.String"
},
@@ -2385,7 +2385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -2662,7 +2662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -2830,7 +2830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -2888,7 +2888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationId": "System.String",
"EndpointType": "System.String",
@@ -2950,7 +2950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotPolicyId": "System.String"
},
@@ -3008,7 +3008,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -3381,7 +3381,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -3445,7 +3445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -3770,7 +3770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -4000,7 +4000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -4356,7 +4356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -4420,7 +4420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -4769,7 +4769,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -4999,7 +4999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -5355,7 +5355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -5419,7 +5419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -5726,7 +5726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -5908,7 +5908,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -6087,7 +6087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -6294,7 +6294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -6346,7 +6346,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -6459,7 +6459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -6523,7 +6523,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -6810,7 +6810,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -6868,7 +6868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -7051,7 +7051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -7171,7 +7171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -7229,7 +7229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -7436,7 +7436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -7494,7 +7494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -7725,7 +7725,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -7783,7 +7783,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -7940,7 +7940,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -8072,7 +8072,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -8130,7 +8130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -8296,7 +8296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -8399,7 +8399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -8607,7 +8607,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -8837,7 +8837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Created": "System.Nullable`1[System.DateTime]",
"ResourceGroupName": "System.String",
@@ -9007,7 +9007,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -9452,7 +9452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -9613,7 +9613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Created": "System.Nullable`1[System.DateTime]",
"ResourceGroupName": "System.String",
@@ -9821,7 +9821,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -10272,7 +10272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -10588,7 +10588,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -10664,7 +10664,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Created": "System.Nullable`1[System.DateTime]",
"ResourceGroupName": "System.String",
@@ -11062,7 +11062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -11212,7 +11212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Created": "System.Nullable`1[System.DateTime]",
"ResourceGroupName": "System.String",
@@ -11422,7 +11422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -11561,7 +11561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -11845,7 +11845,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -12007,7 +12007,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -12164,7 +12164,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -12218,7 +12218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -12273,7 +12273,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -12329,7 +12329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -12405,7 +12405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -12625,7 +12625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -12685,7 +12685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -12746,7 +12746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -12808,7 +12808,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -12990,7 +12990,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -13050,7 +13050,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13111,7 +13111,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13173,7 +13173,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13305,7 +13305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -13420,7 +13420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -13480,7 +13480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13541,7 +13541,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13603,7 +13603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13744,7 +13744,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -13883,7 +13883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -13942,7 +13942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -14231,7 +14231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -14456,7 +14456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -14671,7 +14671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -14830,7 +14830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -14884,7 +14884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -14939,7 +14939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -14995,7 +14995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -15089,7 +15089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -15148,7 +15148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -15375,7 +15375,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -15435,7 +15435,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -15496,7 +15496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -15558,7 +15558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -15716,7 +15716,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -15807,7 +15807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -15867,7 +15867,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -15928,7 +15928,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -15990,7 +15990,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -16148,7 +16148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -16208,7 +16208,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -16269,7 +16269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -16331,7 +16331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -16513,7 +16513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -16573,7 +16573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -16634,7 +16634,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -16696,7 +16696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -16828,7 +16828,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -16924,7 +16924,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -16984,7 +16984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -17045,7 +17045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -17107,7 +17107,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -17377,7 +17377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -17792,7 +17792,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -18148,7 +18148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -18563,7 +18563,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -18790,7 +18790,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Healthy": "System.Nullable`1[System.Boolean]",
"RelationshipStatus": "System.String",
@@ -18939,7 +18939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -19264,7 +19264,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -19554,7 +19554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -19945,7 +19945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -20283,7 +20283,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -20674,7 +20674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -21012,7 +21012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -21403,7 +21403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -21630,7 +21630,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -21769,7 +21769,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -22053,7 +22053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -22215,7 +22215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -22428,7 +22428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -22934,7 +22934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -23269,7 +23269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -23328,7 +23328,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -23617,7 +23617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -23842,7 +23842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -24057,7 +24057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -24272,7 +24272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -24331,7 +24331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -24678,7 +24678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -25127,7 +25127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TotalThroughputMibps": "System.Nullable`1[System.Double]",
"UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
@@ -25326,7 +25326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"Size": "System.Nullable`1[System.Int64]",
@@ -25499,7 +25499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -25944,7 +25944,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -26105,7 +26105,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"Size": "System.Nullable`1[System.Int64]",
@@ -26296,7 +26296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -26719,7 +26719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -26904,7 +26904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -27081,7 +27081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -27157,7 +27157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"Size": "System.Nullable`1[System.Int64]",
@@ -27492,7 +27492,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -27734,7 +27734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"Size": "System.Nullable`1[System.Int64]",
@@ -27947,7 +27947,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -28180,7 +28180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -28256,7 +28256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"Size": "System.Nullable`1[System.Int64]",
@@ -28623,7 +28623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
@@ -29011,7 +29011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"Size": "System.Nullable`1[System.Int64]",
@@ -29182,24 +29182,26 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "ResourceGroupName": "System.String",
- "AccountName": "System.String",
- "ActiveDirectoryId": "System.String",
- "Username": "System.String",
- "Password": "System.String",
- "Domain": "System.String",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "OrganizationalUnit": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
"Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
"Status": "System.String",
- "StatusDetails": "System.String",
- "SmbServerName": "System.String",
- "OrganizationalUnit": "System.String",
- "Site": "System.String",
- "KdcIP": "System.String",
- "AdName": "System.String",
- "ServerRootCACertificate": "System.String"
+ "ResourceGroupName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29484,7 +29486,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -30246,7 +30248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -30628,7 +30630,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -30769,7 +30771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -31149,7 +31151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -31293,7 +31295,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -31552,7 +31554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -32170,7 +32172,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -32468,7 +32470,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -32591,7 +32593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -32668,7 +32670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -32959,7 +32961,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -33184,7 +33186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -33401,7 +33403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -33660,7 +33662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -33719,7 +33721,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -34122,7 +34124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -34733,7 +34735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -34988,24 +34990,26 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "ResourceGroupName": "System.String",
- "AccountName": "System.String",
- "ActiveDirectoryId": "System.String",
- "Username": "System.String",
- "Password": "System.String",
- "Domain": "System.String",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "OrganizationalUnit": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
"Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
"Status": "System.String",
- "StatusDetails": "System.String",
- "SmbServerName": "System.String",
- "OrganizationalUnit": "System.String",
- "Site": "System.String",
- "KdcIP": "System.String",
- "AdName": "System.String",
- "ServerRootCACertificate": "System.String"
+ "ResourceGroupName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -35112,7 +35116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -35398,7 +35402,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -35542,24 +35546,26 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "ResourceGroupName": "System.String",
- "AccountName": "System.String",
- "ActiveDirectoryId": "System.String",
- "Username": "System.String",
- "Password": "System.String",
- "Domain": "System.String",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "OrganizationalUnit": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
"Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
"Status": "System.String",
- "StatusDetails": "System.String",
- "SmbServerName": "System.String",
- "OrganizationalUnit": "System.String",
- "Site": "System.String",
- "KdcIP": "System.String",
- "AdName": "System.String",
- "ServerRootCACertificate": "System.String"
+ "ResourceGroupName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -35664,7 +35670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -35723,24 +35729,26 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "ResourceGroupName": "System.String",
- "AccountName": "System.String",
- "ActiveDirectoryId": "System.String",
- "Username": "System.String",
- "Password": "System.String",
- "Domain": "System.String",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "OrganizationalUnit": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
"Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
"Status": "System.String",
- "StatusDetails": "System.String",
- "SmbServerName": "System.String",
- "OrganizationalUnit": "System.String",
- "Site": "System.String",
- "KdcIP": "System.String",
- "AdName": "System.String",
- "ServerRootCACertificate": "System.String"
+ "ResourceGroupName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36011,7 +36019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -36144,24 +36152,26 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "ResourceGroupName": "System.String",
- "AccountName": "System.String",
- "ActiveDirectoryId": "System.String",
- "Username": "System.String",
- "Password": "System.String",
- "Domain": "System.String",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "OrganizationalUnit": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
"Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
"Status": "System.String",
- "StatusDetails": "System.String",
- "SmbServerName": "System.String",
- "OrganizationalUnit": "System.String",
- "Site": "System.String",
- "KdcIP": "System.String",
- "AdName": "System.String",
- "ServerRootCACertificate": "System.String"
+ "ResourceGroupName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36362,24 +36372,26 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "ResourceGroupName": "System.String",
- "AccountName": "System.String",
- "ActiveDirectoryId": "System.String",
- "Username": "System.String",
- "Password": "System.String",
- "Domain": "System.String",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "OrganizationalUnit": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
"Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
"Status": "System.String",
- "StatusDetails": "System.String",
- "SmbServerName": "System.String",
- "OrganizationalUnit": "System.String",
- "Site": "System.String",
- "KdcIP": "System.String",
- "AdName": "System.String",
- "ServerRootCACertificate": "System.String"
+ "ResourceGroupName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36682,7 +36694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -36741,24 +36753,26 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "ResourceGroupName": "System.String",
- "AccountName": "System.String",
- "ActiveDirectoryId": "System.String",
- "Username": "System.String",
- "Password": "System.String",
- "Domain": "System.String",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "OrganizationalUnit": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
"Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
"Status": "System.String",
- "StatusDetails": "System.String",
- "SmbServerName": "System.String",
- "OrganizationalUnit": "System.String",
- "Site": "System.String",
- "KdcIP": "System.String",
- "AdName": "System.String",
- "ServerRootCACertificate": "System.String"
+ "ResourceGroupName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -37251,7 +37265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -37932,24 +37946,26 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "ResourceGroupName": "System.String",
- "AccountName": "System.String",
- "ActiveDirectoryId": "System.String",
- "Username": "System.String",
- "Password": "System.String",
- "Domain": "System.String",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "OrganizationalUnit": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
"Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
"Status": "System.String",
- "StatusDetails": "System.String",
- "SmbServerName": "System.String",
- "OrganizationalUnit": "System.String",
- "Site": "System.String",
- "KdcIP": "System.String",
- "AdName": "System.String",
- "ServerRootCACertificate": "System.String"
+ "ResourceGroupName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38322,7 +38338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -38692,7 +38708,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -38808,7 +38824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
"GenericTypeArguments": [],
@@ -38959,7 +38975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
"GenericTypeArguments": [],
@@ -39103,7 +39119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
"GenericTypeArguments": [],
@@ -39281,7 +39297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -39607,7 +39623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -39817,7 +39833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -39933,7 +39949,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
"GenericTypeArguments": [],
@@ -40274,7 +40290,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
"GenericTypeArguments": [],
@@ -40427,7 +40443,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -40561,7 +40577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
"GenericTypeArguments": [],
@@ -40579,7 +40595,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -40771,7 +40787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
"GenericTypeArguments": [],
@@ -40963,7 +40979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
"GenericTypeArguments": [],
@@ -41057,7 +41073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
"Tags": "System.Object",
@@ -41196,7 +41212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
"GenericTypeArguments": [],
@@ -41434,7 +41450,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Replication": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject",
"Backup": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
@@ -41480,7 +41496,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationId": "System.String",
"EndpointType": "System.String",
@@ -41538,7 +41554,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -41597,7 +41613,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotPolicyId": "System.String"
},
@@ -41641,7 +41657,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -41685,7 +41701,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule",
"GenericTypeArguments": [],
@@ -41695,7 +41711,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UnixReadOnly": "System.Nullable`1[System.Boolean]",
"UnixReadWrite": "System.Nullable`1[System.Boolean]",
@@ -41989,7 +42005,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -42001,7 +42017,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnabled": "System.Nullable`1[System.Boolean]",
"BackupsCount": "System.Nullable`1[System.Int32]",
@@ -42047,7 +42063,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -42059,24 +42075,26 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "ResourceGroupName": "System.String",
- "AccountName": "System.String",
- "ActiveDirectoryId": "System.String",
- "Username": "System.String",
- "Password": "System.String",
- "Domain": "System.String",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "OrganizationalUnit": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
"Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
"Status": "System.String",
- "StatusDetails": "System.String",
- "SmbServerName": "System.String",
- "OrganizationalUnit": "System.String",
- "Site": "System.String",
- "KdcIP": "System.String",
- "AdName": "System.String",
- "ServerRootCACertificate": "System.String"
+ "ResourceGroupName": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42140,7 +42158,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -42187,7 +42205,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -42233,7 +42251,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -42281,7 +42299,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json
index d4b74fc8afb9..70facfe90b2d 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -80,7 +80,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -177,7 +177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -355,7 +355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -464,7 +464,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -672,7 +672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ResourceBackupStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ResourceBackupStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ResourceBackupStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackedUp": "System.Boolean",
"VaultId": "System.String"
@@ -1224,7 +1224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -1289,7 +1289,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1451,7 +1451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1611,7 +1611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1797,7 +1797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerRegistrationStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1981,7 +1981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"BackupEngineType": "System.String",
@@ -2220,7 +2220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -2303,7 +2303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -2367,7 +2367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2472,7 +2472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2674,7 +2674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2785,7 +2785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2986,7 +2986,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -3056,7 +3056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3167,7 +3167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3368,7 +3368,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3479,7 +3479,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3687,7 +3687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -3752,7 +3752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -3891,7 +3891,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -4079,7 +4079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -4154,7 +4154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4257,7 +4257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4435,7 +4435,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -4516,7 +4516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4625,7 +4625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4833,7 +4833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -4899,7 +4899,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -5069,7 +5069,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -5294,7 +5294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -5369,7 +5369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5472,7 +5472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5575,7 +5575,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -5710,7 +5710,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -5791,7 +5791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5900,7 +5900,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6009,7 +6009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -6174,7 +6174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -6240,7 +6240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -6318,7 +6318,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -6447,7 +6447,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -6653,7 +6653,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -6907,7 +6907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -7161,7 +7161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -7343,7 +7343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -7477,7 +7477,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -7558,7 +7558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -7692,7 +7692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -7871,7 +7871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -8012,7 +8012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -8090,7 +8090,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -8154,7 +8154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8257,7 +8257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -8335,7 +8335,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8438,7 +8438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8541,7 +8541,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8644,7 +8644,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8822,7 +8822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -8892,7 +8892,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9025,7 +9025,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9134,7 +9134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9243,7 +9243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9444,7 +9444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9553,7 +9553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9686,7 +9686,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9795,7 +9795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9904,7 +9904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10105,7 +10105,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -10195,7 +10195,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10304,7 +10304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10413,7 +10413,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10638,7 +10638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10747,7 +10747,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10856,7 +10856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11064,7 +11064,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -11140,7 +11140,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -11222,7 +11222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11325,7 +11325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11521,7 +11521,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -11591,7 +11591,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11768,7 +11768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -11838,7 +11838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11947,7 +11947,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12196,7 +12196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12496,7 +12496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -12561,7 +12561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -12625,7 +12625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12803,7 +12803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -12873,7 +12873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13081,7 +13081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -13147,7 +13147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -13299,7 +13299,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -13481,7 +13481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -13547,7 +13547,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -13567,7 +13567,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -13645,7 +13645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -13710,7 +13710,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -13787,7 +13787,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -13813,7 +13813,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -13915,7 +13915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -13986,7 +13986,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -14087,7 +14087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -14153,7 +14153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -14293,7 +14293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -14601,7 +14601,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -14667,7 +14667,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -14807,7 +14807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -15113,7 +15113,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -15399,7 +15399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -15478,7 +15478,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15498,7 +15498,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15667,7 +15667,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15761,7 +15761,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15787,7 +15787,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15960,7 +15960,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16016,7 +16016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16119,7 +16119,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -16178,7 +16178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16287,7 +16287,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -16364,7 +16364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16420,7 +16420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16523,7 +16523,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -16582,7 +16582,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16691,7 +16691,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -16768,7 +16768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -16847,7 +16847,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16950,7 +16950,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -16970,7 +16970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17025,7 +17025,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17161,7 +17161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17270,7 +17270,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -17296,7 +17296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17357,7 +17357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17493,7 +17493,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -17572,7 +17572,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -17865,7 +17865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -18170,7 +18170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -18236,7 +18236,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -18296,7 +18296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18351,7 +18351,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18481,7 +18481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -18615,7 +18615,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18676,7 +18676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18737,7 +18737,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -18895,7 +18895,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
@@ -19036,7 +19036,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -19100,7 +19100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -19238,7 +19238,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -19406,7 +19406,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PointInTimeBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PointInTimeBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PointInTimeBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartTime": "System.Nullable`1[System.DateTime]",
"EndTime": "System.Nullable`1[System.DateTime]",
@@ -19501,7 +19501,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -19687,7 +19687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -19838,7 +19838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -20064,7 +20064,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -20168,7 +20168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -20390,7 +20390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -20541,7 +20541,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -20740,7 +20740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -20966,7 +20966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RPMountScriptDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RPMountScriptDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RPMountScriptDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21022,7 +21022,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -21160,7 +21160,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -21328,7 +21328,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPoint": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
"PointInTime": "System.DateTime",
@@ -21399,7 +21399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -21480,7 +21480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -21555,7 +21555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -21668,7 +21668,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -21750,7 +21750,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -21888,7 +21888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -21957,7 +21957,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -22038,7 +22038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -22169,7 +22169,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -22263,7 +22263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -22448,7 +22448,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -22529,7 +22529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -22660,7 +22660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -22754,7 +22754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -22915,7 +22915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -22996,7 +22996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -23127,7 +23127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -23221,7 +23221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -23389,7 +23389,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"StartTime": "System.DateTime",
@@ -23473,7 +23473,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -23536,7 +23536,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPoint": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
"PointInTime": "System.DateTime",
@@ -23660,7 +23660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23781,7 +23781,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -24094,7 +24094,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -24342,7 +24342,7 @@
]
},
{
- "Name": "AzureFileParameterSet",
+ "Name": "AzureFileShareParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -24351,7 +24351,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -24420,7 +24420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24553,7 +24553,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -24758,7 +24758,7 @@
]
},
{
- "Name": "AzureVMRestoreAsUnmanaged",
+ "Name": "AzureVMRestoreManagedAsUnmanaged",
"Parameters": [
{
"ParameterMetadata": {
@@ -24767,7 +24767,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -25039,7 +25039,7 @@
]
},
{
- "Name": "AzureVMTargetRGParameterSet",
+ "Name": "AzureVMManagedDiskParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -25048,7 +25048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -25320,7 +25320,7 @@
]
},
{
- "Name": "AzureVMUseOSAParameterSet",
+ "Name": "AzureVMUnManagedDiskParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -25329,7 +25329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -25610,7 +25610,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPoint": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
"PointInTime": "System.DateTime",
@@ -25855,7 +25855,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -25923,7 +25923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -26078,7 +26078,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -26152,7 +26152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -26750,7 +26750,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"BackupEngineType": "System.String",
@@ -26815,7 +26815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"BackupEngineType": "System.String",
@@ -26954,7 +26954,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"BackupEngineType": "System.String",
@@ -27254,7 +27254,7 @@
"Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27411,7 +27411,7 @@
"Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27506,7 +27506,7 @@
"Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27782,7 +27782,7 @@
"Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27877,7 +27877,7 @@
"Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27972,7 +27972,7 @@
"Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
"ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType",
@@ -28027,7 +28027,7 @@
"Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
"Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28122,7 +28122,7 @@
"Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProvisioningState": "System.String",
"PrivateEndpointStateForBackup": "System.String",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json
index 4d90e2023537..d2b5f4078d14 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomEmailAddress": "System.Collections.Generic.IList`1[System.String]",
"EmailSubscriptionOwner": "System.String",
@@ -173,7 +173,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomEmailAddress": "System.Collections.Generic.IList`1[System.String]",
"EmailSubscriptionOwner": "System.String",
@@ -814,7 +814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsManagedDisk": "System.Boolean",
"VhdUri": "System.String",
@@ -1730,7 +1730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiskId": "System.String",
"LogStorageAccountId": "System.String",
@@ -2090,7 +2090,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREvent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREvent, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREvent, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificEventDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails",
"EventSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails",
@@ -2236,7 +2236,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -2781,7 +2781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -3057,7 +3057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -3394,7 +3394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -3872,7 +3872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -3952,7 +3952,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -4079,7 +4079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -4274,7 +4274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -4354,7 +4354,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -4422,7 +4422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
"PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
@@ -4508,7 +4508,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
"PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
@@ -4596,7 +4596,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
"GenericTypeArguments": [],
@@ -4655,7 +4655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -4729,7 +4729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
"PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
@@ -4821,7 +4821,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
"PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
@@ -4915,7 +4915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
"GenericTypeArguments": [],
@@ -5036,7 +5036,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -5132,7 +5132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -5400,7 +5400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -5732,7 +5732,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -5830,7 +5830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -6016,7 +6016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -6196,7 +6196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -6294,7 +6294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -6526,7 +6526,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -6758,7 +6758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -6856,7 +6856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -7042,7 +7042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -7222,7 +7222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableAcceleratedNetworkingOnRecovery": "System.Boolean",
"TfoReuseExistingNic": "System.Boolean",
@@ -7309,7 +7309,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -7830,7 +7830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -8511,7 +8511,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -8579,7 +8579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -8722,7 +8722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -8840,7 +8840,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -8982,7 +8982,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -9177,7 +9177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails",
"ID": "System.String",
@@ -9268,7 +9268,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -9335,7 +9335,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -9466,7 +9466,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -9607,7 +9607,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -9778,7 +9778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -9892,7 +9892,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -9959,7 +9959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -10026,7 +10026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -10112,7 +10112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -10261,7 +10261,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -10359,7 +10359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -10593,7 +10593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -10666,7 +10666,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -10807,7 +10807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -10981,7 +10981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -11061,7 +11061,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails",
"ID": "System.String",
@@ -11174,7 +11174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails",
"ID": "System.String",
@@ -11305,7 +11305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -11385,7 +11385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails",
"ID": "System.String",
@@ -11457,7 +11457,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -11583,7 +11583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails",
"ID": "System.String",
@@ -11731,7 +11731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails",
"ID": "System.String",
@@ -11809,7 +11809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -11977,7 +11977,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -12313,7 +12313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -14071,7 +14071,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -14151,7 +14151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -14259,7 +14259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -14385,7 +14385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -14555,7 +14555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -15019,7 +15019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -15237,7 +15237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -15479,7 +15479,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -15750,7 +15750,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -16129,7 +16129,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -16272,7 +16272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -16651,7 +16651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -16801,7 +16801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails",
"ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]",
@@ -16913,7 +16913,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -17054,7 +17054,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -17206,7 +17206,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -17334,7 +17334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -17515,7 +17515,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -17593,7 +17593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -17767,7 +17767,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -18023,7 +18023,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -18116,7 +18116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -18257,7 +18257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -18385,7 +18385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -18566,7 +18566,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -18662,7 +18662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -18729,7 +18729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -18807,7 +18807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -18948,7 +18948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -19021,7 +19021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -19105,7 +19105,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -19257,7 +19257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -19330,7 +19330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -19511,7 +19511,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -19591,7 +19591,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -19724,7 +19724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -19949,7 +19949,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -20029,7 +20029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -20216,7 +20216,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -20414,7 +20414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -20639,7 +20639,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -20754,7 +20754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -20885,7 +20885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -21027,7 +21027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -21145,7 +21145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -21316,7 +21316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -21414,7 +21414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -21547,7 +21547,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -21718,7 +21718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -21798,7 +21798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -21917,7 +21917,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -22098,7 +22098,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -22180,7 +22180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -22277,7 +22277,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
"StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
@@ -22365,7 +22365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
"StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
@@ -22455,7 +22455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
"GenericTypeArguments": [],
@@ -22475,7 +22475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
"GenericTypeArguments": [],
@@ -22534,7 +22534,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -22689,7 +22689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -22818,7 +22818,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
"StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
@@ -22914,7 +22914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -23043,7 +23043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
"StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
@@ -23139,7 +23139,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
"GenericTypeArguments": [],
@@ -23165,7 +23165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -23294,7 +23294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
"StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
@@ -23390,7 +23390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
"GenericTypeArguments": [],
@@ -23416,7 +23416,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -23555,7 +23555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -23970,7 +23970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -24066,7 +24066,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -24134,7 +24134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -24295,7 +24295,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
"GenericTypeArguments": [],
@@ -24394,7 +24394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -24468,7 +24468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -24542,7 +24542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
"GenericTypeArguments": [],
@@ -24634,7 +24634,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -24759,7 +24759,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
"GenericTypeArguments": [],
@@ -24851,7 +24851,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -24997,7 +24997,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
"GenericTypeArguments": [],
@@ -25187,7 +25187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -25285,7 +25285,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -25473,7 +25473,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -25656,7 +25656,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -25736,7 +25736,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -25874,7 +25874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -26124,7 +26124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPointTime": "System.Nullable`1[System.DateTime]",
"ID": "System.String",
@@ -26209,7 +26209,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -26370,7 +26370,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -26518,7 +26518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -26719,7 +26719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Connected": "System.Boolean",
"LastHeartbeat": "System.DateTime",
@@ -26826,7 +26826,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -26957,7 +26957,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -27099,7 +27099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -27217,7 +27217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -27388,7 +27388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -27468,7 +27468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Connected": "System.Boolean",
"LastHeartbeat": "System.DateTime",
@@ -27579,7 +27579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Connected": "System.Boolean",
"LastHeartbeat": "System.DateTime",
@@ -27752,7 +27752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -27832,7 +27832,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Connected": "System.Boolean",
"LastHeartbeat": "System.DateTime",
@@ -27961,7 +27961,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Connected": "System.Boolean",
"LastHeartbeat": "System.DateTime",
@@ -28182,7 +28182,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -28262,7 +28262,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -28360,7 +28360,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig",
"GenericTypeArguments": [],
@@ -28437,7 +28437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -28541,7 +28541,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig",
"GenericTypeArguments": [],
@@ -28646,7 +28646,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -28781,7 +28781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -28859,7 +28859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails",
"ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]",
@@ -28997,7 +28997,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -29149,7 +29149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -29277,7 +29277,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
"ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
@@ -29405,7 +29405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails",
"ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]",
@@ -29583,7 +29583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -29733,7 +29733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails",
"ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]",
@@ -29808,7 +29808,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig",
"GenericTypeArguments": [],
@@ -29880,7 +29880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -30011,7 +30011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -30105,7 +30105,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput",
"GenericTypeArguments": [],
@@ -30123,7 +30123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
"PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
@@ -30560,7 +30560,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails",
"ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]",
@@ -30665,7 +30665,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -30753,7 +30753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
"PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
@@ -31013,7 +31013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -31185,7 +31185,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails",
"ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]",
@@ -31290,7 +31290,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -31378,7 +31378,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput",
"GenericTypeArguments": [],
@@ -31402,7 +31402,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
"PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
@@ -31638,7 +31638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -31810,7 +31810,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails",
"ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]",
@@ -31987,7 +31987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -32159,7 +32159,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails",
"ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]",
@@ -32483,7 +32483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -32655,7 +32655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails",
"ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]",
@@ -32760,7 +32760,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -32932,7 +32932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig",
"GenericTypeArguments": [],
@@ -33340,7 +33340,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -33920,7 +33920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -34092,7 +34092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -34249,7 +34249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -34329,7 +34329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -34504,7 +34504,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -34801,7 +34801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -34881,7 +34881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -35056,7 +35056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -35230,7 +35230,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -35404,7 +35404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -35561,7 +35561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -35641,7 +35641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -36015,7 +36015,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig",
"GenericTypeArguments": [],
@@ -36219,7 +36219,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig",
"GenericTypeArguments": [],
@@ -36278,7 +36278,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -36748,7 +36748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig",
"GenericTypeArguments": [],
@@ -37018,7 +37018,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig",
"GenericTypeArguments": [],
@@ -37099,7 +37099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -37177,7 +37177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPointTime": "System.Nullable`1[System.DateTime]",
"ID": "System.String",
@@ -37243,7 +37243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -37416,7 +37416,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPointTime": "System.Nullable`1[System.DateTime]",
"ID": "System.String",
@@ -37488,7 +37488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -37785,7 +37785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -37863,7 +37863,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -37942,7 +37942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -38079,7 +38079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -38208,7 +38208,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -38410,7 +38410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -38488,7 +38488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -38567,7 +38567,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -38728,7 +38728,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Connected": "System.Boolean",
"LastHeartbeat": "System.DateTime",
@@ -38873,7 +38873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -39131,7 +39131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -39235,7 +39235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Connected": "System.Boolean",
"LastHeartbeat": "System.DateTime",
@@ -39667,7 +39667,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -39763,7 +39763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -39968,7 +39968,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -40170,7 +40170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -40266,7 +40266,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -40345,7 +40345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -40592,7 +40592,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -40745,7 +40745,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -40970,7 +40970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -41048,7 +41048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -41127,7 +41127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -41246,7 +41246,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -41388,7 +41388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPointTime": "System.Nullable`1[System.DateTime]",
"ID": "System.String",
@@ -41515,7 +41515,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -41774,7 +41774,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -41859,7 +41859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -42079,7 +42079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -42362,7 +42362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -42493,7 +42493,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPointTime": "System.Nullable`1[System.DateTime]",
"ID": "System.String",
@@ -42684,7 +42684,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -42788,7 +42788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
"FriendlyName": "System.String",
@@ -42861,7 +42861,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPointTime": "System.Nullable`1[System.DateTime]",
"ID": "System.String",
@@ -43052,7 +43052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -43207,7 +43207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPointTime": "System.Nullable`1[System.DateTime]",
"ID": "System.String",
@@ -43527,7 +43527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -43605,7 +43605,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -43684,7 +43684,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -43859,7 +43859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPointTime": "System.Nullable`1[System.DateTime]",
"ID": "System.String",
@@ -43987,7 +43987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -44246,7 +44246,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -44350,7 +44350,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecoveryPointTime": "System.Nullable`1[System.DateTime]",
"ID": "System.String",
@@ -44567,7 +44567,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -45000,7 +45000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -45078,7 +45078,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -45136,7 +45136,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -45273,7 +45273,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -45337,7 +45337,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -45538,7 +45538,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -45706,7 +45706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -45764,7 +45764,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.String",
"FreeSpace": "System.String",
@@ -45824,7 +45824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataStores": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]",
"RetentionVolumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]",
@@ -45889,7 +45889,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
"PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
@@ -45975,7 +45975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -46085,7 +46085,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig",
"GenericTypeArguments": [],
@@ -46103,7 +46103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -46182,7 +46182,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -46391,7 +46391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ThresholdPercentage": "System.Nullable`1[System.Int32]",
"CapacityInBytes": "System.Nullable`1[System.Int64]",
@@ -46586,7 +46586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -46650,7 +46650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.String",
"FreeSpace": "System.String",
@@ -46716,7 +46716,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataStores": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]",
"RetentionVolumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]",
@@ -46787,7 +46787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
"PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
@@ -46879,7 +46879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -46959,7 +46959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -47090,7 +47090,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ThresholdPercentage": "System.Nullable`1[System.Int32]",
"CapacityInBytes": "System.Nullable`1[System.Int64]",
@@ -47224,7 +47224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -47288,7 +47288,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataStores": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]",
"RetentionVolumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]",
@@ -47359,7 +47359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
"PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
@@ -47451,7 +47451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -47579,7 +47579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -47826,7 +47826,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -48025,7 +48025,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -48224,7 +48224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -48352,7 +48352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -48740,7 +48740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -48820,7 +48820,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig",
"GenericTypeArguments": [],
@@ -48844,7 +48844,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -49208,7 +49208,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -49364,7 +49364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -49663,7 +49663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FriendlyName": "System.String",
"Id": "System.String",
@@ -49754,7 +49754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -49885,7 +49885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -50027,7 +50027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -50145,7 +50145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -50316,7 +50316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -50390,7 +50390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FriendlyName": "System.String",
"Id": "System.String",
@@ -50507,7 +50507,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FriendlyName": "System.String",
"Id": "System.String",
@@ -50611,7 +50611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FriendlyName": "System.String",
"Id": "System.String",
@@ -50768,7 +50768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -50864,7 +50864,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FriendlyName": "System.String",
"Id": "System.String",
@@ -50918,7 +50918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FriendlyName": "System.String",
"Id": "System.String",
@@ -51035,7 +51035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FriendlyName": "System.String",
"Id": "System.String",
@@ -51095,7 +51095,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FriendlyName": "System.String",
"Id": "System.String",
@@ -51252,7 +51252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -51332,7 +51332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -51428,7 +51428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -51586,7 +51586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceName": "System.String",
"ResourceGroupName": "System.String",
@@ -51746,7 +51746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceName": "System.String",
"ResourceGroupName": "System.String",
@@ -51946,7 +51946,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceName": "System.String",
"ResourceGroupName": "System.String",
@@ -52012,7 +52012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -52119,7 +52119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -52292,7 +52292,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"FriendlyName": "System.String",
@@ -52382,7 +52382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -52575,7 +52575,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -52717,7 +52717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -52888,7 +52888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -52966,7 +52966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -53052,7 +53052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -53185,7 +53185,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -53283,7 +53283,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -53452,7 +53452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -53550,7 +53550,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"FriendlyName": "System.String",
@@ -53621,7 +53621,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -53816,7 +53816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"FriendlyName": "System.String",
@@ -53937,7 +53937,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
"Name": "System.String",
@@ -54132,7 +54132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
"Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
@@ -54230,7 +54230,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"FriendlyName": "System.String",
@@ -54301,7 +54301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -54488,7 +54488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"FriendlyName": "System.String",
@@ -54565,7 +54565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountId": "System.String",
"AccountName": "System.String"
@@ -55084,7 +55084,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderType": "System.String"
},
@@ -55122,7 +55122,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55169,7 +55169,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -55181,7 +55181,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationTimeUtc": "System.String",
"EntityId": "System.String",
@@ -55247,7 +55247,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55289,7 +55289,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -55301,7 +55301,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderErrorDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError",
"ServiceErrorDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError",
@@ -55347,7 +55347,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationTimeUtc": "System.DateTime",
"ErrorCode": "System.Int32",
@@ -55404,7 +55404,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Code": "System.String",
"Message": "System.String",
@@ -55462,7 +55462,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -55474,7 +55474,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"GroupTaskDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails",
"EndTime": "System.DateTime",
@@ -55534,7 +55534,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "System.String"
},
@@ -55612,7 +55612,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -55624,7 +55624,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OsType": "System.String",
"RebootStatus": "System.String",
@@ -55687,7 +55687,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
"CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
@@ -55777,7 +55777,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55883,7 +55883,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -55895,7 +55895,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TfoIPConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig]",
"RecoveryLBBackendAddressPoolId": "System.Collections.Generic.List`1[System.String]",
@@ -56139,7 +56139,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56185,7 +56185,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56237,7 +56237,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56279,7 +56279,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -56291,7 +56291,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Volumes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume]",
"Capacity": "System.Int64",
@@ -56338,7 +56338,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -56350,7 +56350,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Label": "System.String",
"Name": "System.String"
@@ -56395,7 +56395,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -56407,7 +56407,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails",
"FriendlyName": "System.String",
@@ -56466,7 +56466,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -56478,7 +56478,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
"HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]",
@@ -56544,7 +56544,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56586,7 +56586,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -56598,7 +56598,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
"StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
@@ -56678,7 +56678,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -56690,7 +56690,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails",
"FailoverTypes": "System.Collections.Generic.IList`1[System.String]",
@@ -56752,7 +56752,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56910,7 +56910,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -56922,7 +56922,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -56934,7 +56934,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrimaryZone": "System.String",
"RecoveryZone": "System.String"
@@ -56988,7 +56988,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]",
"ReplicationProvider": "System.Collections.Generic.IList`1[System.String]",
@@ -57059,7 +57059,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsManagedDisk": "System.Boolean",
"VhdUri": "System.String",
@@ -57112,7 +57112,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiskId": "System.String",
"LogStorageAccountId": "System.String",
@@ -57159,7 +57159,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableAcceleratedNetworkingOnRecovery": "System.Boolean",
"TfoReuseExistingNic": "System.Boolean",
@@ -57219,7 +57219,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -57231,7 +57231,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.String",
"FreeSpace": "System.String",
@@ -57283,7 +57283,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -57295,7 +57295,7 @@
"Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery",
"Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ThresholdPercentage": "System.Nullable`1[System.Int32]",
"CapacityInBytes": "System.Nullable`1[System.Int64]",
@@ -57359,7 +57359,7 @@
"Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.12.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProvisioningState": "System.String",
"PrivateEndpointStateForBackup": "System.String",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json
index 2be12fb25765..38ae9403416b 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupStorageRedundancy": "System.String"
},
@@ -67,7 +67,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -174,7 +174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -301,7 +301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -854,7 +854,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FilePath": "System.String"
},
@@ -907,7 +907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -1122,7 +1122,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -1360,7 +1360,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -1550,7 +1550,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -1740,7 +1740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -1889,7 +1889,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2216,7 +2216,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Response": "System.String"
},
@@ -2269,7 +2269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2376,7 +2376,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2520,7 +2520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2588,7 +2588,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -2647,7 +2647,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2721,7 +2721,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -2819,7 +2819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2926,7 +2926,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -3192,7 +3192,7 @@
"Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProvisioningState": "System.String",
"PrivateEndpointStateForBackup": "System.String",
@@ -3428,7 +3428,7 @@
"Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
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 294f84f7e4f7..4a94545e9300 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
@@ -665,7 +665,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus",
"Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
@@ -1115,7 +1115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLog",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLog, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLog, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Log": "System.String",
"DeploymentScriptName": "System.String",
@@ -1228,7 +1228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus",
"Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
@@ -1568,7 +1568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus",
"Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
@@ -1766,7 +1766,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLogPath",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLogPath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLogPath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Path": "System.String"
},
@@ -1875,7 +1875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus",
"Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
@@ -2347,7 +2347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus",
"Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
@@ -2617,7 +2617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -3091,7 +3091,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusMessage": "System.Object",
"Id": "System.String",
@@ -3203,7 +3203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -3469,7 +3469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -3687,7 +3687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.ResourceManager.Models.ErrorResponse",
"Changes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]",
@@ -9540,7 +9540,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -9974,7 +9974,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusMessage": "System.Object",
"Id": "System.String",
@@ -10068,7 +10068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -10310,7 +10310,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -10530,7 +10530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.ResourceManager.Models.ErrorResponse",
"Changes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]",
@@ -15983,7 +15983,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -16415,7 +16415,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusMessage": "System.Object",
"Id": "System.String",
@@ -16509,7 +16509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -16751,7 +16751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -16969,7 +16969,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.ResourceManager.Models.ErrorResponse",
"Changes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]",
@@ -22420,7 +22420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -29489,7 +29489,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -36158,7 +36158,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -42903,7 +42903,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -43374,7 +43374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -43748,7 +43748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -44195,7 +44195,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -44571,7 +44571,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -45018,7 +45018,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -45332,7 +45332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Path": "System.String"
},
@@ -45423,7 +45423,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -45751,7 +45751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -46065,7 +46065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Path": "System.String"
},
@@ -46138,7 +46138,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -46442,7 +46442,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -46758,7 +46758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Path": "System.String"
},
@@ -46831,7 +46831,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -47135,7 +47135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -47527,7 +47527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -47932,7 +47932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -48258,7 +48258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -48639,7 +48639,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -48967,7 +48967,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -49348,7 +49348,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -49614,7 +49614,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
"Code": "System.String",
@@ -52778,7 +52778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
"Code": "System.String",
@@ -55542,7 +55542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
"Code": "System.String",
@@ -58304,7 +58304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FeatureName": "System.String",
"ProviderName": "System.String",
@@ -58687,7 +58687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FeatureName": "System.String",
"ProviderName": "System.String",
@@ -58916,7 +58916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FeatureName": "System.String",
"ProviderName": "System.String",
@@ -59145,7 +59145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderLocation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderLocation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Providers": "System.Collections.Generic.List`1[System.String]",
"DisplayName": "System.String",
@@ -60791,7 +60791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61153,7 +61153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61505,7 +61505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61809,7 +61809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62089,7 +62089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62417,7 +62417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62670,7 +62670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62950,7 +62950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64625,7 +64625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64987,7 +64987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65339,7 +65339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65643,7 +65643,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -65923,7 +65923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66251,7 +66251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66504,7 +66504,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66784,7 +66784,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -68191,7 +68191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -68553,7 +68553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationKind, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -68924,7 +68924,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -69316,7 +69316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Application.ApplicationLockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72868,7 +72868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.PsResourceProviderAlias",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.PsResourceProviderAlias, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.PsResourceProviderAlias, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Aliases": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.Alias]",
"Locations": "System.Collections.Generic.IList`1[System.String]",
@@ -73421,7 +73421,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties",
"Identity": "System.Management.Automation.PSObject",
@@ -74205,7 +74205,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -75403,7 +75403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -76601,7 +76601,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties",
"Identity": "System.Management.Automation.PSObject",
@@ -76759,7 +76759,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -76822,7 +76822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -76939,7 +76939,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -77190,7 +77190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -77259,7 +77259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -77352,7 +77352,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -77518,7 +77518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -77587,7 +77587,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -77800,7 +77800,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -77966,7 +77966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -78179,7 +78179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -78272,7 +78272,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -78438,7 +78438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -78651,7 +78651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -78744,7 +78744,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -78910,7 +78910,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -79123,7 +79123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -79216,7 +79216,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -79382,7 +79382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -79595,7 +79595,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -79688,7 +79688,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -79861,7 +79861,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -81005,7 +81005,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -82224,7 +82224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties",
"Identity": "System.Management.Automation.PSObject",
@@ -82624,7 +82624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties",
"Identity": "System.Management.Automation.PSObject",
@@ -83001,7 +83001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -83867,7 +83867,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -84172,7 +84172,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -85038,7 +85038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -85230,7 +85230,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties",
"Identity": "System.Management.Automation.PSObject",
@@ -85498,7 +85498,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -85518,7 +85518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties",
"Identity": "System.Management.Automation.PSObject",
@@ -85852,7 +85852,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -86186,7 +86186,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -86520,7 +86520,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -86782,7 +86782,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -87070,7 +87070,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -87382,7 +87382,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -87694,7 +87694,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -87812,7 +87812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties",
"Identity": "System.Management.Automation.PSObject",
@@ -88029,7 +88029,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -88154,7 +88154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -88402,7 +88402,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -89868,7 +89868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
"Name": "System.String",
@@ -90180,7 +90180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -90410,7 +90410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -91894,7 +91894,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinition, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
"Name": "System.String",
@@ -92206,7 +92206,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceTypes": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[]",
"ZoneMappings": "System.Collections.Hashtable",
@@ -92795,7 +92795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceTypes": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[]",
"ZoneMappings": "System.Collections.Hashtable",
@@ -93068,7 +93068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProvider, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceTypes": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[]",
"ZoneMappings": "System.Collections.Hashtable",
@@ -93341,7 +93341,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -93812,7 +93812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusMessage": "System.Object",
"Id": "System.String",
@@ -94090,7 +94090,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.ResourceManager.Models.ErrorResponse",
"Changes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]",
@@ -101388,7 +101388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroupDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
"OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -112363,7 +112363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
"Code": "System.String",
@@ -118309,7 +118309,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -118952,7 +118952,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -119361,7 +119361,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -119970,7 +119970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.ResourceManager.Models.Identity",
"Plan": "Microsoft.Azure.Management.ResourceManager.Models.Plan",
@@ -126099,7 +126099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.ResourceManager.Models.Identity",
"Plan": "Microsoft.Azure.Management.ResourceManager.Models.Plan",
@@ -126573,7 +126573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResource, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.ResourceManager.Models.Identity",
"Plan": "Microsoft.Azure.Management.ResourceManager.Models.Plan",
@@ -129042,7 +129042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Versions": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[]",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -129548,7 +129548,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Versions": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[]",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -129714,6 +129714,26 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "TemplateJson",
"AliasList": [],
@@ -129994,6 +130014,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "VersionDescription",
@@ -130256,6 +130302,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "VersionDescription",
@@ -130444,6 +130516,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "VersionDescription",
@@ -131057,7 +131155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpec, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Versions": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[]",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -131243,6 +131341,26 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "TemplateJson",
"AliasList": [],
@@ -131435,6 +131553,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "DefaultProfile",
@@ -131651,6 +131795,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "DefaultProfile",
@@ -131865,6 +132035,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "DefaultProfile",
@@ -132029,6 +132225,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "DefaultProfile",
@@ -132267,6 +132489,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "DefaultProfile",
@@ -132503,6 +132751,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "DefaultProfile",
@@ -132571,6 +132845,32 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "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": "DefaultProfile",
@@ -132633,7 +132933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus",
"Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
@@ -132763,7 +133063,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus",
"Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
@@ -133103,7 +133403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus",
"Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
@@ -133647,7 +133947,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsScriptStatus, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.ResourceManager.Models.ErrorResponse",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -134470,7 +134770,7 @@
"System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.ResourceManager.Cmdlets.SdkModels.DeploymentVariable, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -134483,7 +134783,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.Object",
"Type": "System.String"
@@ -134528,7 +134828,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -134540,7 +134840,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChangeType": "Microsoft.Azure.Management.ResourceManager.Models.ChangeType",
"Before": "Newtonsoft.Json.Linq.JToken",
@@ -138545,7 +138845,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -138557,7 +138857,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.Deployments.PSWhatIfPropertyChange, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropertyChangeType": "Microsoft.Azure.Management.ResourceManager.Models.PropertyChangeType",
"Before": "Newtonsoft.Json.Linq.JToken",
@@ -138705,7 +139005,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -138717,7 +139017,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
"Code": "System.String",
@@ -139285,7 +139585,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadata": "System.Management.Automation.PSObject",
"Parameters": "System.Management.Automation.PSObject",
@@ -139356,7 +139656,7 @@
"System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -139368,7 +139668,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -139473,7 +139773,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyDefinitionProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyType": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType",
"Metadata": "System.Management.Automation.PSObject",
@@ -139543,7 +139843,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -139648,7 +139948,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicySetDefinitionProperties, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyType": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.Policy.PsPolicyType",
"Metadata": "System.Management.Automation.PSObject",
@@ -139708,7 +140008,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Policy.PolicyAssignmentEnforcementMode, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -139803,7 +140103,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[]": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[], Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType[], Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType",
"GenericTypeArguments": [],
@@ -139813,7 +140113,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderResourceType, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ZoneMappings": "System.Collections.Hashtable",
"ResourceTypeName": "System.String",
@@ -140271,7 +140571,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[]": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[], Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion[], Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion",
"GenericTypeArguments": [],
@@ -140281,7 +140581,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecVersion, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Artifacts": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact]",
@@ -140332,7 +140632,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -140344,7 +140644,7 @@
"Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
"Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplateSpecArtifact, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Path": "System.String"
},
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 58248b3a1683..7e1a0b28d38a 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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSDenyAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -5344,7 +5344,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -8259,7 +8259,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -8529,7 +8529,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -10485,7 +10485,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -10629,7 +10629,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -10711,7 +10711,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -10923,7 +10923,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -11135,7 +11135,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -11634,7 +11634,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -11713,7 +11713,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -11880,7 +11880,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -12096,7 +12096,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -12529,7 +12529,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -12786,7 +12786,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -12865,7 +12865,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -13032,7 +13032,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -13193,7 +13193,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Type": "System.String",
@@ -13256,7 +13256,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -13597,7 +13597,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -13759,7 +13759,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -14005,7 +14005,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -14480,7 +14480,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -14629,7 +14629,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -15203,7 +15203,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -15276,7 +15276,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -15437,7 +15437,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -15515,7 +15515,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -15617,7 +15617,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -15739,7 +15739,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -15959,7 +15959,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -16323,7 +16323,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -16596,7 +16596,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -16984,7 +16984,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -17307,7 +17307,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartDate": "System.String",
"EndDate": "System.String",
@@ -17417,7 +17417,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -17721,7 +17721,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -17883,7 +17883,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -18469,7 +18469,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -18948,7 +18948,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisplayName": "System.String",
"Id": "System.String",
@@ -19042,7 +19042,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -19278,7 +19278,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -19437,7 +19437,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -19569,7 +19569,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -19963,7 +19963,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -20199,7 +20199,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartDate": "System.String",
"EndDate": "System.String",
@@ -20311,7 +20311,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -20613,7 +20613,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -20773,7 +20773,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountEnabled": "System.Nullable`1[System.Boolean]",
"UserPrincipalName": "System.String",
@@ -21434,7 +21434,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartDate": "System.String",
"EndDate": "System.String",
@@ -21544,7 +21544,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -22556,7 +22556,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -22739,7 +22739,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -23021,7 +23021,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -23173,7 +23173,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -23191,7 +23191,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -23840,7 +23840,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -24264,7 +24264,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -24383,7 +24383,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -24658,7 +24658,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -24712,7 +24712,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"Secret": "System.Security.SecureString",
@@ -24812,7 +24812,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -24875,7 +24875,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -24895,7 +24895,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -25270,7 +25270,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -25504,7 +25504,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -25994,7 +25994,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -26228,7 +26228,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -26296,7 +26296,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -26455,7 +26455,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -26524,7 +26524,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -26592,7 +26592,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -26775,7 +26775,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -26844,7 +26844,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -26963,7 +26963,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartDate": "System.String",
"EndDate": "System.String",
@@ -27015,7 +27015,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Secret": "System.Security.SecureString",
"StartDate": "System.String",
@@ -27117,7 +27117,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -27787,7 +27787,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -27966,7 +27966,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -28222,7 +28222,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountEnabled": "System.Nullable`1[System.Boolean]",
"UserPrincipalName": "System.String",
@@ -28718,7 +28718,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -29274,7 +29274,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -29605,7 +29605,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -30089,7 +30089,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -30402,7 +30402,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -30767,7 +30767,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -31113,7 +31113,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -31368,7 +31368,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -31756,7 +31756,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -32083,7 +32083,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -32218,7 +32218,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -32275,7 +32275,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -32880,7 +32880,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -33035,7 +33035,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -33366,7 +33366,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -33912,7 +33912,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -34285,7 +34285,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountEnabled": "System.Nullable`1[System.Boolean]",
"UserPrincipalName": "System.String",
@@ -34888,7 +34888,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountEnabled": "System.Nullable`1[System.Boolean]",
"UserPrincipalName": "System.String",
@@ -35147,7 +35147,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -35245,7 +35245,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -35823,7 +35823,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -36111,7 +36111,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -36227,7 +36227,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -36957,7 +36957,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -37333,7 +37333,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountEnabled": "System.Nullable`1[System.Boolean]",
"UserPrincipalName": "System.String",
@@ -37452,7 +37452,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountEnabled": "System.Nullable`1[System.Boolean]",
"UserPrincipalName": "System.String",
@@ -38127,7 +38127,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountEnabled": "System.Nullable`1[System.Boolean]",
"UserPrincipalName": "System.String",
@@ -38521,7 +38521,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -38533,7 +38533,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ObjectId": "System.Guid",
"ObjectType": "System.String",
@@ -38801,7 +38801,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -38813,7 +38813,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"Type": "System.String",
@@ -38915,7 +38915,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartDate": "System.DateTime",
"EndDate": "System.DateTime",
@@ -38962,7 +38962,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=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartDate": "System.DateTime",
"EndDate": "System.DateTime",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll.json
index 24a4d8d91fae..0db65dc7d021 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -201,7 +201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName",
"GenericTypeArguments": [],
@@ -676,7 +676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName",
"GenericTypeArguments": [],
@@ -937,7 +937,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -2016,7 +2016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -2375,7 +2375,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -2596,7 +2596,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2926,7 +2926,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3110,7 +3110,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy",
"Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity",
@@ -3631,7 +3631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ProvisioningState": "System.String",
@@ -4137,7 +4137,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultParameterList": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -4722,7 +4722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PartitionDescription": "Microsoft.Azure.Management.ServiceFabric.Models.PartitionSchemeDescription",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -5303,7 +5303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -5690,7 +5690,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -5816,7 +5816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -6388,7 +6388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -6597,7 +6597,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -6905,7 +6905,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -7040,7 +7040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -7699,7 +7699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -8364,7 +8364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -8501,7 +8501,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -8906,7 +8906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -9279,7 +9279,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -9661,7 +9661,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -10098,7 +10098,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -10242,7 +10242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10545,7 +10545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10797,7 +10797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11124,7 +11124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11399,7 +11399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11750,7 +11750,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12026,7 +12026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -13048,7 +13048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -13468,7 +13468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -13752,7 +13752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -13878,7 +13878,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -14408,7 +14408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -14617,7 +14617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -15000,7 +15000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -15589,7 +15589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -15767,7 +15767,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -16372,7 +16372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -16507,7 +16507,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -16872,7 +16872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -17608,7 +17608,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -17752,7 +17752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -17839,7 +17839,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18062,7 +18062,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18306,7 +18306,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18526,7 +18526,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
"ClusterUpgradeDescription": "Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy",
@@ -18777,7 +18777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -18932,7 +18932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -20115,7 +20115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -20269,7 +20269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
"ApplicationPorts": "Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription",
@@ -20594,7 +20594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy",
"Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity",
@@ -21565,7 +21565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ProvisioningState": "System.String",
@@ -21849,7 +21849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultParameterList": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -22312,7 +22312,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PartitionDescription": "Microsoft.Azure.Management.ServiceFabric.Models.PartitionSchemeDescription",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -22623,7 +22623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22991,7 +22991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23340,7 +23340,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23689,7 +23689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24134,7 +24134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24579,7 +24579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25024,7 +25024,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25252,7 +25252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentResult, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentResult, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Cluster": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
"Deployment": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentExtended",
@@ -25679,7 +25679,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27007,7 +27007,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.OperatingSystem, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27330,7 +27330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy",
"Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity",
@@ -27765,7 +27765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy",
"Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity",
@@ -28085,7 +28085,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ProvisioningState": "System.String",
@@ -28505,7 +28505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ProvisioningState": "System.String",
@@ -28830,7 +28830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultParameterList": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -29283,7 +29283,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplicationTypeVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultParameterList": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -29613,7 +29613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PartitionDescription": "Microsoft.Azure.Management.ServiceFabric.Models.PartitionSchemeDescription",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -30066,7 +30066,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSService, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PartitionDescription": "Microsoft.Azure.Management.ServiceFabric.Models.PartitionSchemeDescription",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -30287,7 +30287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -30456,7 +30456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName",
"GenericTypeArguments": [],
@@ -30883,7 +30883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName",
"GenericTypeArguments": [],
@@ -31144,7 +31144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -31457,7 +31457,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -31816,7 +31816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -32129,7 +32129,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -32296,7 +32296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription",
"GenericTypeArguments": [],
@@ -32545,7 +32545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription",
"GenericTypeArguments": [],
@@ -32664,7 +32664,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -32849,7 +32849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription",
"GenericTypeArguments": [],
@@ -33122,7 +33122,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription[], Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription",
"GenericTypeArguments": [],
@@ -33241,7 +33241,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -33372,7 +33372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33584,7 +33584,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33787,7 +33787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34017,7 +34017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy",
"Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity",
@@ -34260,7 +34260,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34579,7 +34579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy",
"Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity",
@@ -34914,7 +34914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -35475,7 +35475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -35916,7 +35916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradePolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy",
"Identity": "Microsoft.Azure.Management.ServiceFabric.Models.ManagedIdentity",
@@ -36095,7 +36095,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -36246,7 +36246,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36482,7 +36482,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.DurabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36666,7 +36666,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -36799,7 +36799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -37013,7 +37013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ReliabilityLevel, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38920,7 +38920,7 @@
"Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSClientCertificateCommonName, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsAdmin": "System.Boolean",
"CertificateCommonName": "System.String",
@@ -40698,7 +40698,7 @@
"Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.ClusterUpgradeMode, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40793,7 +40793,7 @@
"Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSCluster, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationTypeVersionsCleanupPolicy": "Microsoft.Azure.Management.ServiceFabric.Models.ApplicationTypeVersionsCleanupPolicy",
"AzureActiveDirectory": "Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory",
@@ -40877,7 +40877,7 @@
"Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentExtended": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentExtended",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentExtended, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSDeploymentExtended, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.Internal.Resources.Models.DeploymentPropertiesExtended",
"Name": "System.String",
@@ -41824,7 +41824,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -41836,7 +41836,7 @@
"Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Certificate": "System.Security.Cryptography.X509Certificates.X509Certificate2",
"KeyVaultId": "System.String",
@@ -41897,7 +41897,7 @@
"Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsSectionDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription]",
"Name": "System.String"
@@ -41947,7 +41947,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -41959,7 +41959,7 @@
"Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription": {
"Namespace": "Microsoft.Azure.Commands.ServiceFabric.Models",
"Name": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ServiceFabric.Models.PSSettingsParameterDescription, Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric, Version=2.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Value": "System.String"
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 f78320d8e313..fcadf32d07ff 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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -128,27 +128,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -158,8 +160,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -418,27 +420,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -448,8 +452,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -664,7 +668,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -778,27 +782,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -808,8 +814,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1068,27 +1074,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -1098,8 +1106,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1314,7 +1322,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -1428,7 +1436,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -1544,7 +1552,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1788,7 +1796,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2013,7 +2021,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -2129,7 +2137,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2450,7 +2458,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2747,7 +2755,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2979,7 +2987,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -3093,7 +3101,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -3358,7 +3366,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -3599,7 +3607,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -3713,7 +3721,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -3978,7 +3986,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -4219,7 +4227,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -4333,7 +4341,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -4449,7 +4457,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4693,7 +4701,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4918,7 +4926,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -5034,7 +5042,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5355,7 +5363,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5652,7 +5660,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5884,7 +5892,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -5993,7 +6001,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -6199,7 +6207,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -6375,7 +6383,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -6484,7 +6492,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -6690,7 +6698,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -6866,7 +6874,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -6975,7 +6983,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -7091,7 +7099,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7365,7 +7373,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7638,7 +7646,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7839,7 +7847,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -7907,7 +7915,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8108,7 +8116,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8316,7 +8324,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -8425,7 +8433,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -8619,7 +8627,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -8783,7 +8791,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -8892,7 +8900,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -9086,7 +9094,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -9250,7 +9258,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -9364,7 +9372,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -9480,7 +9488,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9754,7 +9762,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10027,7 +10035,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10228,7 +10236,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -10296,7 +10304,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10497,7 +10505,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10705,7 +10713,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerName": "System.String",
"DatabaseName": "System.String",
@@ -10811,7 +10819,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -11086,7 +11094,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -11299,7 +11307,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -11411,27 +11419,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -11441,8 +11451,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11743,27 +11753,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -11773,8 +11785,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12013,7 +12025,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -12125,27 +12137,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -12155,8 +12169,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12499,27 +12513,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -12529,8 +12545,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12793,7 +12809,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceName": "System.String",
"DatabaseName": "System.String",
@@ -12899,7 +12915,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -13174,7 +13190,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -13431,7 +13447,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -13543,7 +13559,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -13850,7 +13866,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -14139,7 +14155,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -14251,7 +14267,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -14600,7 +14616,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -14937,7 +14953,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -15044,27 +15060,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -15074,8 +15092,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15418,27 +15436,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -15448,8 +15468,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15712,7 +15732,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -15819,27 +15839,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -15849,8 +15871,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16193,27 +16215,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -16223,8 +16247,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16487,7 +16511,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -16594,7 +16618,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -16948,7 +16972,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -17204,7 +17228,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -17311,7 +17335,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -17660,7 +17684,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -17997,7 +18021,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -18104,7 +18128,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -18453,7 +18477,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -18790,7 +18814,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -18897,7 +18921,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -19251,7 +19275,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -19599,7 +19623,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -19873,7 +19897,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -20273,7 +20297,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -20589,7 +20613,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -20989,7 +21013,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -21423,7 +21447,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -21521,7 +21545,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -21773,7 +21797,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -22071,7 +22095,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Usages.Models.AzureSqlUsageModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CurrentValue": "System.Nullable`1[System.Int32]",
"Limit": "System.Nullable`1[System.Int32]",
@@ -22130,7 +22154,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -22308,7 +22332,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -22732,7 +22756,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -22824,7 +22848,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -23014,7 +23038,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -23848,7 +23872,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -24108,7 +24132,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -24604,7 +24628,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -24714,7 +24738,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -24910,7 +24934,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -25296,7 +25320,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -25404,7 +25428,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -25576,7 +25600,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -25916,7 +25940,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType",
"ResourceGroupName": "System.String",
@@ -26188,7 +26212,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType",
"PercentComplete": "System.Single",
@@ -26461,7 +26485,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -26692,7 +26716,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -26784,7 +26808,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -26974,7 +26998,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -27384,7 +27408,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -27490,7 +27514,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27631,7 +27655,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -27801,7 +27825,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27936,7 +27960,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -28085,7 +28109,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28312,7 +28336,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28638,7 +28662,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType",
"ResourceGroupName": "System.String",
@@ -28694,7 +28718,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28890,7 +28914,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29122,7 +29146,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -29179,7 +29203,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29411,7 +29435,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29691,7 +29715,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -29970,7 +29994,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -30206,7 +30230,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -30527,7 +30551,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -30805,7 +30829,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -31344,7 +31368,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -31840,7 +31864,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"TargetEdition": "System.String",
@@ -32153,7 +32177,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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]"
@@ -32423,7 +32447,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"IsDefault": "System.Boolean",
@@ -32857,7 +32881,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -33099,7 +33123,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -33689,7 +33713,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -33973,7 +33997,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -34521,7 +34545,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -34838,7 +34862,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -35113,7 +35137,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -35430,7 +35454,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -35706,7 +35730,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -36024,7 +36048,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -36136,7 +36160,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -36450,7 +36474,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -36818,7 +36842,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -37266,7 +37290,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -37561,7 +37585,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState",
"OperationId": "System.Guid",
@@ -37887,7 +37911,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -38350,7 +38374,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -38687,7 +38711,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -39248,7 +39272,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -39522,7 +39546,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -39880,7 +39904,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -40196,7 +40220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureADOnlyAuthentication": "System.Boolean",
"ServerName": "System.String",
@@ -40251,7 +40275,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -40407,7 +40431,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -40731,7 +40755,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureADOnlyAuthentication": "System.Boolean",
"ServerName": "System.String",
@@ -40786,7 +40810,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -40942,7 +40966,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -41266,7 +41290,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureADOnlyAuthentication": "System.Boolean",
"ServerName": "System.String",
@@ -41321,7 +41345,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -41477,7 +41501,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -41801,7 +41825,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ObjectId": "System.Guid",
"IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]",
@@ -42032,7 +42056,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ObjectId": "System.Guid",
"IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]",
@@ -42305,7 +42329,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ObjectId": "System.Guid",
"IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]",
@@ -42620,7 +42644,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -42629,13 +42653,14 @@
"DatabaseName": "System.String",
"ServerName": "System.String",
"ResourceGroupName": "System.String",
+ "SecondaryType": "System.String",
"BackupStorageRedundancy": "System.String",
"LicenseType": "System.String",
"Family": "System.String",
"Edition": "System.String",
"SkuName": "System.String",
+ "PartnerLocation": "System.String",
"StartTime": "System.String",
- "Location": "System.String",
"Role": "System.String",
"PartnerRole": "System.String",
"PercentComplete": "System.String",
@@ -42644,7 +42669,7 @@
"SecondaryServiceObjectiveName": "System.String",
"PartnerDatabaseName": "System.String",
"PartnerServerName": "System.String",
- "PartnerLocation": "System.String",
+ "Location": "System.String",
"PartnerResourceGroupName": "System.String"
},
"ElementType": null,
@@ -42996,7 +43021,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -44344,7 +44369,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -44353,13 +44378,14 @@
"DatabaseName": "System.String",
"ServerName": "System.String",
"ResourceGroupName": "System.String",
+ "SecondaryType": "System.String",
"BackupStorageRedundancy": "System.String",
"LicenseType": "System.String",
"Family": "System.String",
"Edition": "System.String",
"SkuName": "System.String",
+ "PartnerLocation": "System.String",
"StartTime": "System.String",
- "Location": "System.String",
"Role": "System.String",
"PartnerRole": "System.String",
"PercentComplete": "System.String",
@@ -44368,7 +44394,7 @@
"SecondaryServiceObjectiveName": "System.String",
"PartnerDatabaseName": "System.String",
"PartnerServerName": "System.String",
- "PartnerLocation": "System.String",
+ "Location": "System.String",
"PartnerResourceGroupName": "System.String"
},
"ElementType": null,
@@ -44548,7 +44574,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44743,6 +44769,27 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "ServerName",
"AliasList": [],
@@ -44946,7 +44993,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45124,6 +45171,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "ServerName",
@@ -45393,7 +45467,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45571,6 +45645,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "ServerName",
@@ -45844,7 +45945,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46022,6 +46123,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "ServerName",
@@ -46128,7 +46256,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -46137,13 +46265,14 @@
"DatabaseName": "System.String",
"ServerName": "System.String",
"ResourceGroupName": "System.String",
+ "SecondaryType": "System.String",
"BackupStorageRedundancy": "System.String",
"LicenseType": "System.String",
"Family": "System.String",
"Edition": "System.String",
"SkuName": "System.String",
+ "PartnerLocation": "System.String",
"StartTime": "System.String",
- "Location": "System.String",
"Role": "System.String",
"PartnerRole": "System.String",
"PercentComplete": "System.String",
@@ -46152,7 +46281,7 @@
"SecondaryServiceObjectiveName": "System.String",
"PartnerDatabaseName": "System.String",
"PartnerServerName": "System.String",
- "PartnerLocation": "System.String",
+ "Location": "System.String",
"PartnerResourceGroupName": "System.String"
},
"ElementType": null,
@@ -46504,7 +46633,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -46513,13 +46642,14 @@
"DatabaseName": "System.String",
"ServerName": "System.String",
"ResourceGroupName": "System.String",
+ "SecondaryType": "System.String",
"BackupStorageRedundancy": "System.String",
"LicenseType": "System.String",
"Family": "System.String",
"Edition": "System.String",
"SkuName": "System.String",
+ "PartnerLocation": "System.String",
"StartTime": "System.String",
- "Location": "System.String",
"Role": "System.String",
"PartnerRole": "System.String",
"PercentComplete": "System.String",
@@ -46528,7 +46658,7 @@
"SecondaryServiceObjectiveName": "System.String",
"PartnerDatabaseName": "System.String",
"PartnerServerName": "System.String",
- "PartnerLocation": "System.String",
+ "Location": "System.String",
"PartnerResourceGroupName": "System.String"
},
"ElementType": null,
@@ -47132,7 +47262,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DatabaseCollection": "System.Collections.Generic.IList`1[System.String]",
"DatabaseDtuMax": "System.Int32",
@@ -47366,7 +47496,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -47772,7 +47902,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -48178,7 +48308,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -48537,7 +48667,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -48661,7 +48791,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48899,7 +49029,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49155,7 +49285,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -49279,7 +49409,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49517,7 +49647,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49773,7 +49903,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -49892,7 +50022,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50112,7 +50242,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50344,7 +50474,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -50422,7 +50552,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -50618,7 +50748,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -51469,7 +51599,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -51547,7 +51677,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -52116,7 +52246,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -54709,7 +54839,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -54825,7 +54955,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -55095,7 +55225,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -55411,7 +55541,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -55489,7 +55619,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -55944,7 +56074,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -57774,7 +57904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OperationParameters": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationParametersPair",
"OperationSteps": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationSteps",
@@ -58292,7 +58422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OperationParameters": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationParametersPair",
"OperationSteps": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationSteps",
@@ -58438,7 +58568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OperationParameters": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationParametersPair",
"OperationSteps": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationSteps",
@@ -58800,7 +58930,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OperationParameters": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationParametersPair",
"OperationSteps": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationSteps",
@@ -59133,7 +59263,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -59526,7 +59656,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -59723,7 +59853,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ManagedInstanceName": "System.String",
@@ -60063,7 +60193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseRestoreDetailsResultModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseRestoreDetailsResultModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseRestoreDetailsResultModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PercentCompleted": "System.Double",
"NumberOfFilesDetected": "System.Int64",
@@ -60365,7 +60495,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -60536,7 +60666,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -60892,7 +61022,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -61068,7 +61198,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -61257,7 +61387,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -61747,7 +61877,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -62149,7 +62279,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -62300,7 +62430,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -62611,7 +62741,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -62944,7 +63074,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -63192,7 +63322,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -63245,7 +63375,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ManagedInstanceName": "System.String",
@@ -63738,7 +63868,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -64394,7 +64524,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -65439,7 +65569,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ManagedInstanceName": "System.String",
@@ -66404,7 +66534,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -66669,7 +66799,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -67262,7 +67392,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -67559,7 +67689,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -67748,7 +67878,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -68141,7 +68271,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -68338,7 +68468,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DeletionDate": "System.DateTime",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -68867,7 +68997,7 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WeekOfYear": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -69145,7 +69275,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RetentionDays": "System.Int32",
"DeletionDate": "System.Nullable`1[System.DateTime]",
@@ -69226,7 +69356,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -69411,7 +69541,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -69773,7 +69903,7 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -69853,7 +69983,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -70846,7 +70976,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -71012,7 +71142,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -71257,7 +71387,7 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -71373,7 +71503,7 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -71733,7 +71863,7 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -72035,7 +72165,7 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WeekOfYear": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -73059,7 +73189,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SupportedServerVersions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]",
"LocationName": "System.String",
@@ -73551,7 +73681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureADOnlyAuthentication": "System.Boolean",
"InstanceName": "System.String",
@@ -73606,7 +73736,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -73774,7 +73904,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -74110,7 +74240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureADOnlyAuthentication": "System.Boolean",
"InstanceName": "System.String",
@@ -74165,7 +74295,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -74333,7 +74463,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -74669,7 +74799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureADOnlyAuthentication": "System.Boolean",
"InstanceName": "System.String",
@@ -74724,7 +74854,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -74892,7 +75022,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -75228,7 +75358,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ObjectId": "System.Guid",
"ResourceGroupName": "System.String",
@@ -75284,7 +75414,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -75452,7 +75582,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -75788,7 +75918,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ObjectId": "System.Guid",
"ResourceGroupName": "System.String",
@@ -75880,7 +76010,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -76140,7 +76270,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -76576,7 +76706,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ObjectId": "System.Guid",
"ResourceGroupName": "System.String",
@@ -76668,7 +76798,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -76928,7 +77058,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -77364,7 +77494,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -77804,7 +77934,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -78390,7 +78520,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -78454,7 +78584,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -78612,7 +78742,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -78938,7 +79068,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -79002,7 +79132,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -79216,7 +79346,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -79838,7 +79968,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -80120,7 +80250,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -80738,7 +80868,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -80858,7 +80988,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -81320,7 +81450,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -81582,7 +81712,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -81702,7 +81832,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -82230,7 +82360,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -82540,7 +82670,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -82660,7 +82790,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -83056,7 +83186,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -83270,7 +83400,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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]",
@@ -83641,7 +83771,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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]",
@@ -83970,7 +84100,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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]",
@@ -84299,7 +84429,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateEndpointRequestStatus": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus[]",
"OperationStatusLink": "System.String",
@@ -84491,7 +84621,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType",
"NetworkIsolationSettings": "Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings",
@@ -84592,7 +84722,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -84767,7 +84897,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -85029,7 +85159,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -85234,7 +85364,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -85490,7 +85620,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType",
"NetworkIsolationSettings": "Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings",
@@ -85573,7 +85703,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -85730,7 +85860,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -85905,7 +86035,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -86143,7 +86273,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -86324,7 +86454,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -86529,7 +86659,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -86785,7 +86915,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -87062,7 +87192,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -87649,7 +87779,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -87968,7 +88098,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -88329,7 +88459,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -88459,7 +88589,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -88584,7 +88714,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -88685,7 +88815,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -88995,7 +89125,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -89161,7 +89291,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -89282,7 +89412,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -89538,7 +89668,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -89671,7 +89801,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -89855,7 +89985,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -89985,7 +90115,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -90128,7 +90258,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -90253,7 +90383,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -90605,7 +90735,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -90735,7 +90865,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -90856,7 +90986,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -91064,7 +91194,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -91197,7 +91327,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -91381,7 +91511,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -91775,7 +91905,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -92068,7 +92198,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OperationId": "System.Guid",
"IsCancellable": "System.Nullable`1[System.Boolean]",
@@ -92402,27 +92532,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -92432,8 +92564,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -93143,7 +93275,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -94490,7 +94622,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -94825,7 +94957,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -96176,7 +96308,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OperationId": "System.Guid",
"IsCancellable": "System.Nullable`1[System.Boolean]",
@@ -96552,7 +96684,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -96633,7 +96765,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -96909,7 +97041,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -97193,7 +97325,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -97274,27 +97406,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -97304,8 +97438,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -97692,27 +97826,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -97722,8 +97858,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -98082,7 +98218,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -98163,7 +98299,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -98480,7 +98616,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -98783,7 +98919,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -98864,7 +99000,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -99185,7 +99321,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -99468,7 +99604,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -99546,7 +99682,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -99863,7 +99999,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -100146,7 +100282,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -100224,7 +100360,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -100583,7 +100719,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -100914,7 +101050,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -100992,7 +101128,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -101306,7 +101442,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -101534,7 +101670,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -101612,7 +101748,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -101968,7 +102104,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -102244,7 +102380,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -102330,7 +102466,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -102729,7 +102865,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -103082,7 +103218,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -103168,7 +103304,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -103528,7 +103664,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -103764,7 +103900,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -103850,7 +103986,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -104040,27 +104176,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -104070,8 +104208,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -104970,27 +105108,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -105000,8 +105140,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -105881,7 +106021,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -106249,7 +106389,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -106391,27 +106531,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -106421,8 +106563,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -106812,7 +106954,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -107694,27 +107836,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -107724,8 +107868,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -108740,7 +108884,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -108826,7 +108970,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -109003,27 +109147,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -109033,8 +109179,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -109527,27 +109673,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -109557,8 +109705,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -110902,7 +111050,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -110975,27 +111123,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -111005,8 +111155,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -111442,7 +111592,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -111811,7 +111961,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -112276,27 +112426,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -112306,8 +112458,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -113734,7 +113886,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -113817,7 +113969,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -114846,7 +114998,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -115032,7 +115184,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -115268,7 +115420,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -116233,7 +116385,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -116316,7 +116468,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -117425,7 +117577,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -117639,7 +117791,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -117877,7 +118029,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -118870,7 +119022,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -118947,7 +119099,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -119264,7 +119416,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -119547,7 +119699,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -119624,7 +119776,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -119941,7 +120093,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -120224,7 +120376,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -120301,7 +120453,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -120656,7 +120808,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -120955,7 +121107,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]",
"TargetGroupName": "System.String",
@@ -121056,7 +121208,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -122091,7 +122243,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -122271,7 +122423,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -122475,7 +122627,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -123202,7 +123354,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]",
"TargetGroupName": "System.String",
@@ -123285,7 +123437,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -124180,7 +124332,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -124336,7 +124488,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -124516,7 +124668,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -125191,7 +125343,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -125277,7 +125429,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -125850,7 +126002,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -125990,7 +126142,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -126421,7 +126573,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -126507,7 +126659,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -126871,7 +127023,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -127107,7 +127259,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -127190,7 +127342,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -127507,7 +127659,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -127790,7 +127942,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -127873,7 +128025,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -128234,7 +128386,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -128539,7 +128691,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -128625,7 +128777,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -129392,7 +129544,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -129682,7 +129834,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -130255,7 +130407,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -130341,7 +130493,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -131133,7 +131285,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -131378,7 +131530,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -131858,7 +132010,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -131944,7 +132096,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -132618,7 +132770,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -133231,7 +133383,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -133340,27 +133492,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -133370,8 +133524,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -133588,7 +133742,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -133977,27 +134131,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -134007,8 +134163,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -134384,7 +134540,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -134493,7 +134649,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -134716,7 +134872,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -135105,7 +135261,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -135487,7 +135643,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -135596,27 +135752,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -135626,8 +135784,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -135844,7 +136002,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -136233,27 +136391,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -136263,8 +136423,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -136640,7 +136800,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -136749,7 +136909,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -136972,7 +137132,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -137361,7 +137521,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -137722,7 +137882,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -137832,27 +137992,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -137862,8 +138024,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -138412,27 +138574,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -138442,8 +138606,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -138603,27 +138767,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -138633,8 +138799,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -138941,7 +139107,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -139051,27 +139217,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -139081,8 +139249,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -139365,27 +139533,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -139395,8 +139565,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -139631,7 +139801,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -139741,7 +139911,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -140296,7 +140466,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -140462,7 +140632,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -140775,7 +140945,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -140885,7 +141055,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -141174,7 +141344,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -141434,7 +141604,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -141543,27 +141713,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -141573,8 +141745,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -141789,7 +141961,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -142178,27 +142350,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -142208,8 +142382,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -142583,7 +142757,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -142692,7 +142866,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -142913,7 +143087,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -143302,7 +143476,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -143718,7 +143892,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -143827,27 +144001,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -143857,8 +144033,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -144405,27 +144581,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -144435,8 +144613,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -144692,7 +144870,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -144999,7 +145177,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -145108,7 +145286,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -145661,7 +145839,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"AutoCompleteRestore": "System.Nullable`1[System.Boolean]",
@@ -145923,7 +146101,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -146175,27 +146353,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -146205,8 +146385,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -146513,7 +146693,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState",
"OperationId": "System.Guid",
@@ -146884,7 +147064,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceTierAdvisor": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -146897,26 +147077,28 @@
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
+ "Capacity": "System.Nullable`1[System.Int32]",
"AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "CatalogCollation": "System.String",
- "ResourceGroupName": "System.String",
- "LicenseType": "System.String",
- "SkuName": "System.String",
"Family": "System.String",
- "ServerName": "System.String",
- "DatabaseName": "System.String",
+ "SkuName": "System.String",
+ "LicenseType": "System.String",
"CreateMode": "System.String",
- "ResourceId": "System.String",
- "Location": "System.String",
- "Edition": "System.String",
"ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
- "CollationName": "System.String",
"Status": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "CatalogCollation": "System.String",
+ "CollationName": "System.String",
+ "Edition": "System.String",
+ "Location": "System.String",
+ "DatabaseName": "System.String",
+ "ServerName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -147603,27 +147785,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -147633,8 +147817,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -147849,7 +148033,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -148158,8 +148342,10 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "ReadReplicaCount",
- "AliasList": [],
+ "Name": "HighAvailabilityReplicaCount",
+ "AliasList": [
+ "ReadReplicaCount"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.Int32",
@@ -148197,6 +148383,27 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "ServerName",
"AliasList": [],
@@ -148376,7 +148583,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -148679,8 +148886,10 @@
},
{
"ParameterMetadata": {
- "Name": "ReadReplicaCount",
- "AliasList": [],
+ "Name": "HighAvailabilityReplicaCount",
+ "AliasList": [
+ "ReadReplicaCount"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.Int32",
@@ -148729,6 +148938,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "ServerName",
@@ -148998,7 +149234,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -149301,8 +149537,10 @@
},
{
"ParameterMetadata": {
- "Name": "ReadReplicaCount",
- "AliasList": [],
+ "Name": "HighAvailabilityReplicaCount",
+ "AliasList": [
+ "ReadReplicaCount"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.Int32",
@@ -149351,6 +149589,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "ServerName",
@@ -149650,7 +149915,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -149953,8 +150218,10 @@
},
{
"ParameterMetadata": {
- "Name": "ReadReplicaCount",
- "AliasList": [],
+ "Name": "HighAvailabilityReplicaCount",
+ "AliasList": [
+ "ReadReplicaCount"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.Int32",
@@ -150003,6 +150270,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "ServerName",
@@ -150109,27 +150403,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -150139,8 +150435,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -150489,27 +150785,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -150519,8 +150817,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -150699,7 +150997,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -150988,8 +151286,10 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "ReadReplicaCount",
- "AliasList": [],
+ "Name": "HighAvailabilityReplicaCount",
+ "AliasList": [
+ "ReadReplicaCount"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.Int32",
@@ -151027,6 +151327,27 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "ServerName",
"AliasList": [],
@@ -151179,6 +151500,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "ServerName",
@@ -151374,7 +151722,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -151627,8 +151975,10 @@
},
{
"ParameterMetadata": {
- "Name": "ReadReplicaCount",
- "AliasList": [],
+ "Name": "HighAvailabilityReplicaCount",
+ "AliasList": [
+ "ReadReplicaCount"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.Int32",
@@ -151727,6 +152077,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "ServerName",
@@ -151874,7 +152251,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -152181,8 +152558,10 @@
},
{
"ParameterMetadata": {
- "Name": "ReadReplicaCount",
- "AliasList": [],
+ "Name": "HighAvailabilityReplicaCount",
+ "AliasList": [
+ "ReadReplicaCount"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.Int32",
@@ -152281,6 +152660,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "ServerName",
@@ -152475,6 +152881,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SecondaryType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Named",
+ "Geo"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "ServerName",
@@ -152581,7 +153014,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState",
"OperationId": "System.Guid",
@@ -152952,7 +153385,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -153032,27 +153465,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -153062,8 +153497,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -154078,27 +154513,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -154108,8 +154545,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -154269,27 +154706,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -154299,8 +154738,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -154539,7 +154978,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -154655,7 +155094,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -155015,7 +155454,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -155317,7 +155756,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RetentionDays": "System.Int32",
"ResourceGroupName": "System.String",
@@ -155392,27 +155831,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -155422,8 +155863,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -155622,27 +156063,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -155652,8 +156095,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -156024,7 +156467,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastAvailableBackupDate": "System.DateTime",
"ResourceGroupName": "System.String",
@@ -156299,7 +156742,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.DateTime",
"DeletionDate": "System.DateTime",
@@ -156625,7 +157068,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WeekOfYear": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -156903,7 +157346,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState",
"Location": "System.String",
@@ -157176,7 +157619,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RestorePointCreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
@@ -157452,7 +157895,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RestorePointCreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
@@ -157770,7 +158213,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RestorePointCreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
@@ -158130,27 +158573,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -158160,8 +158605,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -161518,7 +161963,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RetentionDays": "System.Int32",
"ResourceGroupName": "System.String",
@@ -161611,27 +162056,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -161641,8 +162088,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -161909,27 +162356,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -161939,8 +162388,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -162339,7 +162788,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WeekOfYear": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -163363,7 +163812,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState",
"Location": "System.String",
@@ -163420,7 +163869,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -163616,7 +164065,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -163848,7 +164297,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RetentionDays": "System.Int32",
"DeletionDate": "System.Nullable`1[System.DateTime]",
@@ -163929,7 +164378,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -164132,7 +164581,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -164590,27 +165039,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -164620,8 +165071,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -164966,27 +165417,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -164996,8 +165449,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -165342,7 +165795,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsUpToDate": "System.Nullable`1[System.Boolean]",
"LastAliveTime": "System.Nullable`1[System.DateTime]",
@@ -165642,7 +166095,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SeverName": "System.String",
"DatabaseId": "System.String",
@@ -165930,7 +166383,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]",
@@ -166280,7 +166733,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TimeStamp": "System.Nullable`1[System.DateTime]",
"LogLevel": "System.String",
@@ -166744,7 +167197,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]",
"MemberDatabasePassword": "System.Security.SecureString",
@@ -167143,7 +167596,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tables": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]",
"LastUpdateTime": "System.Nullable`1[System.DateTime]"
@@ -167507,7 +167960,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsUpToDate": "System.Nullable`1[System.Boolean]",
"LastAliveTime": "System.Nullable`1[System.DateTime]",
@@ -168211,7 +168664,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncAgentKey": "System.String"
},
@@ -168480,7 +168933,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]",
@@ -169172,7 +169625,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]",
"MemberDatabasePassword": "System.Security.SecureString",
@@ -170920,7 +171373,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsUpToDate": "System.Nullable`1[System.Boolean]",
"LastAliveTime": "System.Nullable`1[System.DateTime]",
@@ -171304,7 +171757,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]",
@@ -171738,7 +172191,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]",
"MemberDatabasePassword": "System.Security.SecureString",
@@ -172221,7 +172674,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]",
@@ -172613,7 +173066,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]",
@@ -173005,7 +173458,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]",
@@ -173523,7 +173976,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]",
"MemberDatabasePassword": "System.Security.SecureString",
@@ -174052,7 +174505,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]",
@@ -174482,7 +174935,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType",
"DatabaseName": "System.String",
@@ -174755,7 +175208,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -175161,7 +175614,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -175893,7 +176346,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -176383,7 +176836,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType",
"DatabaseName": "System.String",
@@ -176788,7 +177241,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -177520,7 +177973,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
"BlobStorageTargetState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType",
@@ -177641,27 +178094,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -177671,8 +178126,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -177913,27 +178368,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -177943,8 +178400,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -178131,7 +178588,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
"BlobStorageTargetState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType",
@@ -178232,7 +178689,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -178468,7 +178925,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -178753,27 +179210,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -178783,8 +179242,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -179025,27 +179484,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -179055,8 +179516,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -179298,7 +179759,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -179534,7 +179995,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -179765,7 +180226,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -180067,27 +180528,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -180097,8 +180560,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -180223,7 +180686,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -180665,7 +181128,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -181035,27 +181498,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -181065,8 +181530,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -181158,7 +181623,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -181554,7 +182019,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -181820,7 +182285,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -181940,7 +182405,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -182358,7 +182823,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -182728,7 +183193,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -182797,7 +183262,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -183174,7 +183639,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -183558,7 +184023,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -183942,7 +184407,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -184279,7 +184744,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -184381,7 +184846,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -184601,7 +185066,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -184833,7 +185298,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -184935,7 +185400,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -185155,7 +185620,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -185387,7 +185852,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -185484,7 +185949,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -185686,7 +186151,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -185894,7 +186359,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"ManagedInstanceName": "System.String",
@@ -185949,7 +186414,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -186099,7 +186564,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -186371,7 +186836,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"ServerName": "System.String",
@@ -186426,7 +186891,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -186564,7 +187029,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -186826,7 +187291,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"ManagedInstanceName": "System.String",
@@ -186935,7 +187400,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -187249,7 +187714,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -187501,7 +187966,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"ServerName": "System.String",
@@ -187610,7 +188075,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -187912,7 +188377,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -188154,7 +188619,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"ManagedInstanceName": "System.String",
@@ -188209,7 +188674,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -188359,7 +188824,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -188631,7 +189096,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsEnabled": "System.Boolean",
"ServerName": "System.String",
@@ -188686,7 +189151,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -188824,7 +189289,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -189217,7 +189682,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -189385,7 +189850,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -189397,7 +189862,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -189886,7 +190351,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -189981,7 +190446,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -189993,7 +190458,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Code": "System.String",
"Message": "System.String"
@@ -190038,7 +190503,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -190050,7 +190515,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Result": "System.Collections.Generic.IList`1[System.String]"
},
@@ -190173,7 +190638,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -190268,7 +190733,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -190349,7 +190814,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -190444,7 +190909,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -190541,7 +191006,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -190636,7 +191101,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -190731,7 +191196,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -190838,7 +191303,7 @@
"System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -190850,7 +191315,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"TargetEdition": "System.String",
@@ -190896,7 +191361,7 @@
"System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -190908,7 +191373,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DatabaseCollection": "System.Collections.Generic.IList`1[System.String]",
"DatabaseDtuMax": "System.Int32",
@@ -190959,7 +191424,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -191054,7 +191519,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Current": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Requested": "System.Collections.Generic.IDictionary`2[System.String,System.String]"
@@ -191099,7 +191564,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -191194,7 +191659,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ErrorCode": "System.String",
"IsRetryable": "System.String"
@@ -191239,7 +191704,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Method": "System.String",
"Script": "System.String"
@@ -191284,7 +191749,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionStateInfo": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionStateInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionStateInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionStateInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastModified": "System.DateTime",
"CurrentValue": "System.String",
@@ -191353,7 +191818,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -191365,7 +191830,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AbsoluteValue": "System.Nullable`1[System.Double]",
"ChangeValueAbsolute": "System.Nullable`1[System.Double]",
@@ -191413,7 +191878,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -191425,7 +191890,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartTime": "System.Nullable`1[System.DateTime]",
"Value": "System.Nullable`1[System.Double]",
@@ -191741,7 +192206,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -191753,7 +192218,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SupportedEditions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]",
"Status": "System.String",
@@ -191799,7 +192264,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -191811,7 +192276,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SupportedServiceObjectives": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]",
"Status": "System.String",
@@ -191857,7 +192322,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -191869,7 +192334,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SupportedMaxSizes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]",
"Id": "System.Nullable`1[System.Guid]",
@@ -191916,7 +192381,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -191928,7 +192393,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MinValue": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel",
"MaxValue": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel",
@@ -191976,7 +192441,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Limit": "System.Nullable`1[System.Int32]",
"Unit": "System.String",
@@ -192188,7 +192653,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -192200,7 +192665,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChangeValueAbsolute": "System.Nullable`1[System.Double]",
"ChangeValueRelative": "System.Nullable`1[System.Double]",
@@ -192247,7 +192712,7 @@
"Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus[]": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus",
"GenericTypeArguments": [],
@@ -192257,7 +192722,7 @@
"Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateLinkServiceId": "System.String",
"PrivateEndpointConnectionName": "System.String",
@@ -192303,7 +192768,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -192398,7 +192863,7 @@
"Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SqlServerResourceId": "System.String",
"StorageAccountResourceId": "System.String"
@@ -192443,7 +192908,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -192548,7 +193013,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverPolicy": "System.String"
},
@@ -192592,7 +193057,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FailoverWithDataLossGracePeriodMinutes": "System.Nullable`1[System.Int32]",
"FailoverPolicy": "System.String"
@@ -192637,7 +193102,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -192649,7 +193114,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Location": "System.String",
@@ -192695,27 +193160,29 @@
"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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
- "CurrentServiceObjectiveId": "System.Guid",
"DatabaseId": "System.Guid",
+ "CurrentServiceObjectiveId": "System.Guid",
"MaxSizeBytes": "System.Int64",
"ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
"ZoneRedundant": "System.Nullable`1[System.Boolean]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
"MinimumCapacity": "System.Nullable`1[System.Double]",
"RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]",
- "Capacity": "System.Nullable`1[System.Int32]",
- "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "HighAvailabilityReplicaCount": "System.Nullable`1[System.Int32]",
"ReadReplicaCount": "System.Nullable`1[System.Int32]",
- "SkuName": "System.String",
+ "AutoPauseDelayInMinutes": "System.Nullable`1[System.Int32]",
+ "Capacity": "System.Nullable`1[System.Int32]",
+ "ResourceGroupName": "System.String",
"Family": "System.String",
- "CreateMode": "System.String",
- "ResourceId": "System.String",
"LicenseType": "System.String",
- "ResourceGroupName": "System.String",
+ "SkuName": "System.String",
+ "CreateMode": "System.String",
+ "ElasticPoolName": "System.String",
+ "BackupStorageRedundancy": "System.String",
"RequestedServiceObjectiveName": "System.String",
"CurrentServiceObjectiveName": "System.String",
"Status": "System.String",
@@ -192725,8 +193192,8 @@
"Location": "System.String",
"DatabaseName": "System.String",
"ServerName": "System.String",
- "ElasticPoolName": "System.String",
- "BackupStorageRedundancy": "System.String"
+ "ResourceId": "System.String",
+ "SecondaryType": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -192923,7 +193390,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SubscriptionId": "System.Nullable`1[System.Guid]",
"Credential": "System.String",
@@ -192974,7 +193441,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -192986,7 +193453,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]",
"TargetGroupName": "System.String",
@@ -193149,7 +193616,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -193161,7 +193628,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rank": "System.Nullable`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank]",
"SchemaName": "System.String",
@@ -193212,7 +193679,7 @@
"System.Nullable`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -193224,7 +193691,7 @@
"Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -193319,7 +193786,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Current": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Requested": "System.Collections.Generic.IDictionary`2[System.String,System.String]"
@@ -193364,7 +193831,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceLevelObjectiveUsageMetrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric]",
"Confidence": "System.Double",
@@ -193426,7 +193893,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -193438,7 +193905,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"InRangeTimeRatio": "System.Double",
@@ -193489,7 +193956,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -193584,7 +194051,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tables": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]",
"MasterSyncMemberName": "System.String"
@@ -193644,7 +194111,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -193656,7 +194123,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]",
"QuotedName": "System.String"
@@ -193716,7 +194183,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -193728,7 +194195,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QuotedName": "System.String",
"DataSize": "System.String",
@@ -193995,7 +194462,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -194007,7 +194474,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HasError": "System.Boolean",
"Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]",
@@ -194065,7 +194532,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -194077,7 +194544,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HasError": "System.Boolean",
"IsPrimaryKey": "System.Boolean",
@@ -194137,7 +194604,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -194232,7 +194699,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -194327,7 +194794,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -194337,7 +194804,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -194432,7 +194899,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -194527,7 +194994,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.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -194622,7 +195089,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -194634,7 +195101,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionProperties",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -194683,7 +195150,7 @@
"Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionProperties": {
"Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models",
"Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.11.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
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 3817f5ad8884..f9669284336a 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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -234,7 +234,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -575,7 +575,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -751,7 +751,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -1012,7 +1012,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"Days": "System.Nullable`1[System.Int32]"
@@ -1120,7 +1120,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -1416,7 +1416,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -1759,7 +1759,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"MinRestoreTime": "System.Nullable`1[System.DateTime]",
@@ -1868,7 +1868,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -2164,7 +2164,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -2507,7 +2507,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChangeFeed": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed",
"Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules",
@@ -2634,7 +2634,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -2976,7 +2976,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -3397,7 +3397,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"MinRestoreTime": "System.Nullable`1[System.DateTime]",
@@ -3506,7 +3506,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -3848,7 +3848,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -4269,7 +4269,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChangeFeed": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed",
"Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules",
@@ -4396,7 +4396,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -4650,7 +4650,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -4921,7 +4921,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -5072,7 +5072,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -5397,7 +5397,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -5702,7 +5702,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -5824,7 +5824,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -5926,7 +5926,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -6269,7 +6269,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -6447,7 +6447,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -6712,7 +6712,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -6834,7 +6834,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -6936,7 +6936,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -7070,7 +7070,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -7386,7 +7386,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -7588,7 +7588,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -7802,7 +7802,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -8014,7 +8014,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -8165,7 +8165,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -8288,7 +8288,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8525,7 +8525,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8702,7 +8702,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -8837,7 +8837,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9041,7 +9041,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9303,7 +9303,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -9407,7 +9407,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -9790,7 +9790,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -9992,7 +9992,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -10301,7 +10301,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -10423,7 +10423,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -10525,7 +10525,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -10659,7 +10659,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -10933,7 +10933,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -11111,7 +11111,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -11301,7 +11301,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -11465,7 +11465,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HasLegalHold": "System.Nullable`1[System.Boolean]",
"Tags": "System.String[]"
@@ -11583,7 +11583,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -11685,7 +11685,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -12026,7 +12026,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -12202,7 +12202,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -12463,7 +12463,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -12585,7 +12585,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -12687,7 +12687,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -12801,7 +12801,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -13397,7 +13397,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -13651,7 +13651,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -13879,7 +13879,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -14117,7 +14117,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -14357,7 +14357,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -14522,7 +14522,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -14736,7 +14736,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChangeFeed": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed",
"Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules",
@@ -14863,7 +14863,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -15243,7 +15243,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -15730,7 +15730,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -15902,7 +15902,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -16006,7 +16006,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -16118,7 +16118,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16355,7 +16355,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16559,7 +16559,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -16667,7 +16667,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16846,7 +16846,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties",
"LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties",
@@ -16964,7 +16964,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17141,7 +17141,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17325,7 +17325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules",
"ShareDeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy",
@@ -17438,7 +17438,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -17692,7 +17692,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -17963,7 +17963,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Deleted": "System.Nullable`1[System.Boolean]",
@@ -18117,7 +18117,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -18596,7 +18596,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -18799,7 +18799,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -19145,7 +19145,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Deleted": "System.Nullable`1[System.Boolean]",
@@ -19299,7 +19299,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -19722,7 +19722,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -20215,7 +20215,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -20337,7 +20337,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Deleted": "System.Nullable`1[System.Boolean]",
@@ -20723,7 +20723,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -21041,7 +21041,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Deleted": "System.Nullable`1[System.Boolean]",
@@ -21353,7 +21353,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Deleted": "System.Nullable`1[System.Boolean]",
@@ -21507,7 +21507,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -21611,7 +21611,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Deleted": "System.Nullable`1[System.Boolean]",
@@ -21949,7 +21949,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -22154,7 +22154,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Deleted": "System.Nullable`1[System.Boolean]",
@@ -22370,7 +22370,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules",
"ShareDeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy",
@@ -22483,7 +22483,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -22827,7 +22827,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -23251,7 +23251,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Deleted": "System.Nullable`1[System.Boolean]",
@@ -23426,7 +23426,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -23548,7 +23548,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Deleted": "System.Nullable`1[System.Boolean]",
@@ -23990,7 +23990,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -24370,7 +24370,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Deleted": "System.Nullable`1[System.Boolean]",
@@ -24744,7 +24744,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -24891,7 +24891,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -25050,7 +25050,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -25218,7 +25218,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -25336,7 +25336,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -25461,7 +25461,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25503,7 +25503,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25588,7 +25588,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -25606,7 +25606,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -25839,7 +25839,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -25982,7 +25982,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -26421,7 +26421,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]",
"EnabledTime": "System.Nullable`1[System.DateTime]",
@@ -26562,7 +26562,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -26839,7 +26839,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -27090,7 +27090,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -28073,7 +28073,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -28206,7 +28206,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -28509,7 +28509,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -28712,7 +28712,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -29068,7 +29068,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -29210,7 +29210,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -29530,7 +29530,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -29829,7 +29829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartRange": "System.String",
"EndRange": "System.String"
@@ -30101,7 +30101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Filters": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter",
"RuleId": "System.String",
@@ -30492,7 +30492,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -30822,7 +30822,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -31627,7 +31627,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -32371,7 +32371,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -33259,7 +33259,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -33998,7 +33998,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrefixMatch": "System.String[]",
"BlobTypes": "System.String[]"
@@ -34219,7 +34219,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Definition": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -34345,7 +34345,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -34413,7 +34413,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrefixMatch": "System.String[]",
"BlobTypes": "System.String[]"
@@ -34588,7 +34588,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -34662,7 +34662,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrefixMatch": "System.String[]",
"BlobTypes": "System.String[]"
@@ -34864,7 +34864,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -34984,7 +34984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]",
"EnabledTime": "System.Nullable`1[System.DateTime]",
@@ -35285,7 +35285,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -35485,7 +35485,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]",
"EnabledTime": "System.Nullable`1[System.DateTime]",
@@ -36076,7 +36076,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -36198,7 +36198,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -36449,7 +36449,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -36719,7 +36719,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -36944,7 +36944,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36986,7 +36986,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -37071,7 +37071,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -37089,7 +37089,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -37322,7 +37322,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -37465,7 +37465,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -37904,7 +37904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters",
"Status": "System.String",
@@ -38026,7 +38026,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -38146,7 +38146,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange",
"GenericTypeArguments": [],
@@ -38313,7 +38313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange",
"GenericTypeArguments": [],
@@ -38477,7 +38477,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange",
"GenericTypeArguments": [],
@@ -38593,7 +38593,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -38725,7 +38725,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange",
"GenericTypeArguments": [],
@@ -38865,7 +38865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange",
"GenericTypeArguments": [],
@@ -39048,7 +39048,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -39348,7 +39348,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -39693,7 +39693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]",
"EnabledTime": "System.Nullable`1[System.DateTime]",
@@ -39834,7 +39834,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -39936,7 +39936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]",
"EnabledTime": "System.Nullable`1[System.DateTime]",
@@ -40092,7 +40092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule",
"GenericTypeArguments": [],
@@ -40271,7 +40271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule",
"GenericTypeArguments": [],
@@ -40389,7 +40389,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]",
"EnabledTime": "System.Nullable`1[System.DateTime]",
@@ -40541,7 +40541,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -40721,7 +40721,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule",
"GenericTypeArguments": [],
@@ -41189,7 +41189,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -41584,7 +41584,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -42298,7 +42298,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -42957,7 +42957,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -43688,7 +43688,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -44467,7 +44467,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -44823,7 +44823,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -44938,7 +44938,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -45058,7 +45058,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
"GenericTypeArguments": [],
@@ -45078,7 +45078,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -45243,7 +45243,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
"GenericTypeArguments": [],
@@ -45363,7 +45363,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -45489,7 +45489,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -45597,7 +45597,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
"GenericTypeArguments": [],
@@ -45665,7 +45665,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -45775,7 +45775,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -45925,7 +45925,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
"GenericTypeArguments": [],
@@ -46019,7 +46019,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]",
"LastModifiedTime": "System.Nullable`1[System.DateTime]",
@@ -46196,7 +46196,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -46411,7 +46411,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46514,7 +46514,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46617,7 +46617,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -46635,7 +46635,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -46761,7 +46761,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46870,7 +46870,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46979,7 +46979,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -47003,7 +47003,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -47313,7 +47313,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Unit": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.UsageUnit]",
"CurrentValue": "System.Nullable`1[System.Int32]",
@@ -47685,7 +47685,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActiveDirectoryProperties": "Microsoft.Azure.Commands.Management.Storage.Models.PSActiveDirectoryProperties",
"DirectoryServiceOptions": "System.String"
@@ -47735,7 +47735,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSActiveDirectoryProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSActiveDirectoryProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSActiveDirectoryProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSActiveDirectoryProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DomainName": "System.String",
"NetBiosDomainName": "System.String",
@@ -47789,7 +47789,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreStatus, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters",
"Status": "System.String",
@@ -47846,7 +47846,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreParameters, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobRanges": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]",
"TimeToRestore": "System.DateTime"
@@ -47901,7 +47901,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange",
"GenericTypeArguments": [],
@@ -47911,7 +47911,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobRestoreRange, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartRange": "System.String",
"EndRange": "System.String"
@@ -48096,7 +48096,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseSubDomain": "System.Nullable`1[System.Boolean]",
"Name": "System.String"
@@ -48215,7 +48215,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CanFailover": "System.Nullable`1[System.Boolean]",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -48283,7 +48283,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]",
"DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum",
@@ -48450,7 +48450,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule",
"GenericTypeArguments": [],
@@ -48460,7 +48460,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48496,7 +48496,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48601,7 +48601,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule",
"GenericTypeArguments": [],
@@ -48611,7 +48611,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48647,7 +48647,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -48659,7 +48659,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48754,7 +48754,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -48766,7 +48766,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49401,7 +49401,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"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]",
@@ -50703,7 +50703,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication",
@@ -50797,7 +50797,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpdateHistory": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]",
"AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]",
@@ -50850,7 +50850,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty",
"GenericTypeArguments": [],
@@ -50860,7 +50860,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Timestamp": "System.Nullable`1[System.DateTime]",
"ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]",
@@ -50926,7 +50926,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]",
"HasLegalHold": "System.Nullable`1[System.Boolean]"
@@ -50976,7 +50976,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty",
"GenericTypeArguments": [],
@@ -50986,7 +50986,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Timestamp": "System.Nullable`1[System.DateTime]",
"Tag": "System.String",
@@ -51039,7 +51039,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], 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=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -51051,7 +51051,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51440,7 +51440,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSChangeFeed, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]"
},
@@ -51553,7 +51553,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CorsRulesProperty": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[]"
},
@@ -51612,7 +51612,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule",
"GenericTypeArguments": [],
@@ -51622,7 +51622,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxAgeInSeconds": "System.Int32",
"AllowedOrigins": "System.String[]",
@@ -51830,7 +51830,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"Days": "System.Nullable`1[System.Int32]"
@@ -51890,7 +51890,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSRestorePolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"MinRestoreTime": "System.Nullable`1[System.DateTime]",
@@ -52161,7 +52161,7 @@
"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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TierToCool": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification",
"TierToArchive": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification",
@@ -52222,7 +52222,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DaysAfterModificationGreaterThan": "System.Nullable`1[System.Int32]"
},
@@ -52419,7 +52419,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Delete": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation"
},
@@ -52478,7 +52478,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DaysAfterCreationGreaterThan": "System.Int32"
},
@@ -52729,7 +52729,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule",
"GenericTypeArguments": [],
@@ -52739,7 +52739,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Filters": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter",
"RuleId": "System.String",
@@ -52821,7 +52821,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrefixMatch": "System.String[]"
},
@@ -53131,7 +53131,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy[]": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy",
"GenericTypeArguments": [],
@@ -53141,7 +53141,7 @@
"Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy": {
"Namespace": "Microsoft.Azure.Commands.Management.Storage.Models",
"Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[]",
"EnabledTime": "System.Nullable`1[System.DateTime]",
@@ -53342,7 +53342,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule",
"GenericTypeArguments": [],
@@ -53352,7 +53352,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Definition": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -53433,7 +53433,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup",
"Filters": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter"
@@ -53503,7 +53503,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob",
"Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot"
@@ -53563,7 +53563,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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrefixMatch": "System.String[]",
"BlobTypes": "System.String[]"
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json
index bcded78148e1..e12c321fa0a9 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
"RecordSeparator": "System.String"
@@ -507,7 +507,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -674,7 +674,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -878,7 +878,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -1345,7 +1345,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"CloudTable": "Microsoft.Azure.Cosmos.Table.CloudTable",
@@ -3568,7 +3568,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"CloudTable": "Microsoft.Azure.Cosmos.Table.CloudTable",
@@ -4906,7 +4906,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueueProperties": "Azure.Storage.Queues.Models.QueueProperties",
"QueueClient": "Azure.Storage.Queues.QueueClient",
@@ -5365,7 +5365,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueueProperties": "Azure.Storage.Queues.Models.QueueProperties",
"QueueClient": "Azure.Storage.Queues.QueueClient",
@@ -17516,7 +17516,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OpenTime": "System.DateTimeOffset",
"ClientPort": "System.Int32",
@@ -18110,7 +18110,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OpenTime": "System.DateTimeOffset",
"ClientPort": "System.Int32",
@@ -22397,7 +22397,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OpenTime": "System.DateTimeOffset",
"ClientPort": "System.Int32",
@@ -30462,7 +30462,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties",
"ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient",
@@ -30475,6 +30475,20 @@
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
+ {
+ "Name": "GetTrack2FileClient",
+ "Parameters": [
+ {
+ "Name": "cloudFile",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "context",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "Azure.Storage.Files.Shares.ShareFileClient"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -38425,7 +38439,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties",
"ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient",
@@ -38438,6 +38452,20 @@
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
+ {
+ "Name": "GetTrack2FileClient",
+ "Parameters": [
+ {
+ "Name": "cloudFile",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "context",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "Azure.Storage.Files.Shares.ShareFileClient"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -70087,7 +70115,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OpenTime": "System.DateTimeOffset",
"ClientPort": "System.Int32",
@@ -89363,7 +89391,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties",
"ShareClient": "Azure.Storage.Files.Shares.ShareClient",
@@ -90753,7 +90781,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ShareDirectoryProperties": "Azure.Storage.Files.Shares.Models.ShareDirectoryProperties",
"ShareDirectoryClient": "Azure.Storage.Files.Shares.ShareDirectoryClient",
@@ -116697,7 +116725,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties",
"ShareClient": "Azure.Storage.Files.Shares.ShareClient",
@@ -119001,7 +119029,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ShareDirectoryProperties": "Azure.Storage.Files.Shares.Models.ShareDirectoryProperties",
"ShareDirectoryClient": "Azure.Storage.Files.Shares.ShareDirectoryClient",
@@ -127053,7 +127081,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties",
"ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient",
@@ -127066,6 +127094,20 @@
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
+ {
+ "Name": "GetTrack2FileClient",
+ "Parameters": [
+ {
+ "Name": "cloudFile",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "context",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "Azure.Storage.Files.Shares.ShareFileClient"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -146331,7 +146373,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties",
"ShareClient": "Azure.Storage.Files.Shares.ShareClient",
@@ -151637,7 +151679,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties",
"ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient",
@@ -151650,6 +151692,20 @@
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
+ {
+ "Name": "GetTrack2FileClient",
+ "Parameters": [
+ {
+ "Name": "cloudFile",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "context",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "Azure.Storage.Files.Shares.ShareFileClient"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -160066,7 +160122,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties",
"ShareClient": "Azure.Storage.Files.Shares.ShareClient",
@@ -165482,7 +165538,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties",
"ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient",
@@ -165495,6 +165551,20 @@
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
+ {
+ "Name": "GetTrack2FileClient",
+ "Parameters": [
+ {
+ "Name": "cloudFile",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "context",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "Azure.Storage.Files.Shares.ShareFileClient"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -240971,7 +241041,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"RetentionDays": "System.Nullable`1[System.Int32]"
@@ -241229,7 +241299,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"IndexDocument": "System.String",
@@ -241486,7 +241556,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"RetentionDays": "System.Nullable`1[System.Int32]"
@@ -241790,7 +241860,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"IndexDocument": "System.String",
@@ -242131,7 +242201,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxAgeInSeconds": "System.Int32",
"AllowedOrigins": "System.String[]",
@@ -242208,7 +242278,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -242441,7 +242511,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -242781,7 +242851,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -242950,7 +243020,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -243208,7 +243278,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -243311,7 +243381,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -243480,7 +243550,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -243589,7 +243659,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -243782,7 +243852,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Logging": "Microsoft.Azure.Storage.Shared.Protocol.LoggingProperties",
"HourMetrics": "Microsoft.Azure.Storage.Shared.Protocol.MetricsProperties",
@@ -243856,7 +243926,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -244025,7 +244095,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -245033,7 +245103,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage",
"Name": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"TableStorageAccount": "Microsoft.Azure.Cosmos.Table.CloudStorageAccount",
@@ -246209,7 +246279,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -246442,7 +246512,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -246717,7 +246787,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxAgeInSeconds": "System.Int32",
"AllowedOrigins": "System.String[]",
@@ -246794,7 +246864,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -246897,7 +246967,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule",
"GenericTypeArguments": [],
@@ -247063,7 +247133,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -247172,7 +247242,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule",
"GenericTypeArguments": [],
@@ -247451,7 +247521,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -247696,7 +247766,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -248054,7 +248124,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -248157,7 +248227,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -248404,7 +248474,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -248513,7 +248583,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -248808,7 +248878,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Logging": "Microsoft.Azure.Storage.Shared.Protocol.LoggingProperties",
"HourMetrics": "Microsoft.Azure.Storage.Shared.Protocol.MetricsProperties",
@@ -248882,7 +248952,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -249087,7 +249157,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -249328,7 +249398,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobContainerClient": "Azure.Storage.Blobs.BlobContainerClient",
"AccessPolicy": "Azure.Storage.Blobs.Models.BlobContainerAccessPolicy",
@@ -250034,7 +250104,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryOutput",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryOutput, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryOutput, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobQueryError": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError[]",
"FailureCount": "System.Int32",
@@ -250105,6 +250175,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -251039,6 +251110,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -251171,6 +251266,7 @@
"Name": "Azure.Storage.Blobs.BlobContainerClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.BlobContainerClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"Name": "System.String",
"Uri": "System.Uri"
@@ -251780,6 +251876,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[System.Boolean]]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -252012,7 +252132,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
"RecordSeparator": "System.String"
@@ -252064,7 +252184,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
"RecordSeparator": "System.String"
@@ -252284,6 +252404,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -253218,6 +253339,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -253402,7 +253547,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
"RecordSeparator": "System.String"
@@ -253460,7 +253605,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
"RecordSeparator": "System.String"
@@ -253727,6 +253872,7 @@
"Name": "Azure.Storage.Blobs.BlobContainerClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.BlobContainerClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"Name": "System.String",
"Uri": "System.Uri"
@@ -254336,6 +254482,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[System.Boolean]]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -254586,7 +254756,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
"RecordSeparator": "System.String"
@@ -254644,7 +254814,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
"RecordSeparator": "System.String"
@@ -255055,7 +255225,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
"RecordSeparator": "System.String"
@@ -255113,7 +255283,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
"RecordSeparator": "System.String"
@@ -255426,7 +255596,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
"RecordSeparator": "System.String"
@@ -255484,7 +255654,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryTextConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
"RecordSeparator": "System.String"
@@ -259838,6 +260008,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -260772,6 +260943,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -268230,6 +268425,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -269164,6 +269360,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -273410,7 +273630,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobClient": "Azure.Storage.Blobs.BlobClient",
"BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties",
@@ -289975,7 +290195,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobClient": "Azure.Storage.Blobs.BlobClient",
"BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties",
@@ -292247,7 +292467,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobClient": "Azure.Storage.Blobs.BlobClient",
"BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties",
@@ -296497,6 +296717,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -297431,6 +297652,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -304871,6 +305116,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -305805,6 +306051,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -325246,7 +325516,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobContainerClient": "Azure.Storage.Blobs.BlobContainerClient",
"AccessPolicy": "Azure.Storage.Blobs.Models.BlobContainerAccessPolicy",
@@ -330972,6 +331242,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -331906,6 +332177,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -336339,6 +336634,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -337273,6 +337569,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -341705,6 +342025,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -342639,6 +342960,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -343762,7 +344107,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobContainerClient": "Azure.Storage.Blobs.BlobContainerClient",
"AccessPolicy": "Azure.Storage.Blobs.Models.BlobContainerAccessPolicy",
@@ -347303,7 +347648,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobClient": "Azure.Storage.Blobs.BlobClient",
"BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties",
@@ -351557,6 +351902,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -352491,6 +352837,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -373376,6 +373746,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -374310,6 +374681,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -379042,6 +379437,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -379976,6 +380372,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -410373,7 +410793,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobClient": "Azure.Storage.Blobs.BlobClient",
"BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties",
@@ -456869,7 +457289,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobClient": "Azure.Storage.Blobs.BlobClient",
"BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties",
@@ -472303,7 +472723,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -472902,7 +473322,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -473039,7 +473459,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -473544,7 +473964,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -474055,7 +474475,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -474390,7 +474810,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -474527,7 +474947,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -474944,7 +475364,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -475355,7 +475775,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -476662,7 +477082,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -476788,7 +477208,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -477016,7 +477436,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -477275,7 +477695,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -477692,7 +478112,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -478103,7 +478523,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -478229,7 +478649,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -478457,7 +478877,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -478661,7 +479081,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSACLRecursiveChangeResult, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -478787,7 +479207,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -479015,7 +479435,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -479219,7 +479639,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -479356,7 +479776,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -479546,7 +479966,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -479798,7 +480218,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -479899,7 +480319,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"File": "Azure.Storage.Files.DataLake.DataLakeFileClient",
@@ -480125,7 +480545,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -480346,7 +480766,7 @@
"Type": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -480585,7 +481005,7 @@
"Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.BlobQueryConfigType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -481130,7 +481550,7 @@
"Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
"GenericTypeArguments": [],
@@ -481140,7 +481560,7 @@
"Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -488113,7 +488533,7 @@
"Azure.Response": {
"Namespace": "Azure",
"Name": "Azure.Response",
- "AssemblyQualifiedName": "Azure.Response, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
"Headers": "Azure.Core.ResponseHeaders",
"Status": "System.Int32",
@@ -488174,7 +488594,7 @@
"Azure.Core.ResponseHeaders": {
"Namespace": "Azure.Core",
"Name": "Azure.Core.ResponseHeaders",
- "AssemblyQualifiedName": "Azure.Core.ResponseHeaders, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Core.ResponseHeaders, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
"ETag": "System.Nullable`1[Azure.ETag]",
"Date": "System.Nullable`1[System.DateTimeOffset]",
@@ -488259,7 +488679,7 @@
"System.Nullable`1[Azure.ETag]": {
"Namespace": "System",
"Name": "System.Nullable`1[Azure.ETag]",
- "AssemblyQualifiedName": "System.Nullable`1[[Azure.ETag, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Azure.ETag, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488271,7 +488691,7 @@
"Azure.ETag": {
"Namespace": "Azure",
"Name": "Azure.ETag",
- "AssemblyQualifiedName": "Azure.ETag, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.ETag, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -488348,7 +488768,7 @@
"System.Collections.Generic.IEnumerator`1[Azure.Core.HttpHeader]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerator`1[Azure.Core.HttpHeader]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerator`1[[Azure.Core.HttpHeader, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerator`1[[Azure.Core.HttpHeader, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488360,7 +488780,7 @@
"Azure.Core.HttpHeader": {
"Namespace": "Azure.Core",
"Name": "Azure.Core.HttpHeader",
- "AssemblyQualifiedName": "Azure.Core.HttpHeader, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Core.HttpHeader, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
"Name": "System.String",
"Value": "System.String"
@@ -488482,7 +488902,7 @@
"System.Threading.Tasks.Task`1[Azure.Response]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488494,7 +488914,7 @@
"Azure.Response`1[System.Boolean]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[System.Boolean]",
- "AssemblyQualifiedName": "Azure.Response`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488506,7 +488926,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[System.Boolean]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[System.Boolean]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488518,7 +488938,7 @@
"Azure.Response`1[Azure.Storage.Queues.Models.QueueProperties]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Queues.Models.QueueProperties]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.QueueProperties, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.QueueProperties, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488530,7 +488950,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.QueueProperties]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.QueueProperties]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.QueueProperties, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.QueueProperties, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488542,7 +488962,7 @@
"Azure.Response`1[System.Collections.Generic.IEnumerable`1[Azure.Storage.Queues.Models.QueueSignedIdentifier]]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[System.Collections.Generic.IEnumerable`1[Azure.Storage.Queues.Models.QueueSignedIdentifier]]",
- "AssemblyQualifiedName": "Azure.Response`1[[System.Collections.Generic.IEnumerable`1[[Azure.Storage.Queues.Models.QueueSignedIdentifier, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[System.Collections.Generic.IEnumerable`1[[Azure.Storage.Queues.Models.QueueSignedIdentifier, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488657,7 +489077,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[System.Collections.Generic.IEnumerable`1[Azure.Storage.Queues.Models.QueueSignedIdentifier]]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[System.Collections.Generic.IEnumerable`1[Azure.Storage.Queues.Models.QueueSignedIdentifier]]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[System.Collections.Generic.IEnumerable`1[[Azure.Storage.Queues.Models.QueueSignedIdentifier, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[System.Collections.Generic.IEnumerable`1[[Azure.Storage.Queues.Models.QueueSignedIdentifier, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488669,7 +489089,7 @@
"Azure.Response`1[Azure.Storage.Queues.Models.SendReceipt]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Queues.Models.SendReceipt]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.SendReceipt, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.SendReceipt, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488723,7 +489143,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.SendReceipt]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.SendReceipt]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.SendReceipt, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.SendReceipt, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488735,7 +489155,7 @@
"Azure.Response`1[Azure.Storage.Queues.Models.QueueMessage[]]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Queues.Models.QueueMessage[]]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.QueueMessage[], Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.QueueMessage[], Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488811,7 +489231,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.QueueMessage[]]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.QueueMessage[]]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.QueueMessage[], Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.QueueMessage[], Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488823,7 +489243,7 @@
"Azure.Response`1[Azure.Storage.Queues.Models.QueueMessage]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Queues.Models.QueueMessage]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.QueueMessage, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.QueueMessage, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488835,7 +489255,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.QueueMessage]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.QueueMessage]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.QueueMessage, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.QueueMessage, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488847,7 +489267,7 @@
"Azure.Response`1[Azure.Storage.Queues.Models.PeekedMessage]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Queues.Models.PeekedMessage]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.PeekedMessage, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.PeekedMessage, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488901,7 +489321,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.PeekedMessage]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.PeekedMessage]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.PeekedMessage, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.PeekedMessage, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488913,7 +489333,7 @@
"Azure.Response`1[Azure.Storage.Queues.Models.PeekedMessage[]]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Queues.Models.PeekedMessage[]]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.PeekedMessage[], Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.PeekedMessage[], Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488935,7 +489355,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.PeekedMessage[]]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.PeekedMessage[]]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.PeekedMessage[], Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.PeekedMessage[], Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488947,7 +489367,7 @@
"Azure.Response`1[Azure.Storage.Queues.Models.UpdateReceipt]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Queues.Models.UpdateReceipt]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.UpdateReceipt, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Queues.Models.UpdateReceipt, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -488998,7 +489418,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.UpdateReceipt]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Queues.Models.UpdateReceipt]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.UpdateReceipt, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Queues.Models.UpdateReceipt, Azure.Storage.Queues, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -506925,7 +507345,13 @@
"ReturnType": "System.Type"
}
],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"System.Nullable`1[Azure.Storage.Files.Shares.Models.NtfsFileAttributes]": {
"Namespace": "System",
@@ -507336,6 +507762,7 @@
"Name": "Azure.Storage.Files.Shares.ShareFileClient",
"AssemblyQualifiedName": "Azure.Storage.Files.Shares.ShareFileClient, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"ShareName": "System.String",
"Name": "System.String",
@@ -508747,6 +509174,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[System.IO.Stream]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -508851,7 +509302,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -508904,7 +509355,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -508916,7 +509367,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileCopyInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileCopyInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileCopyInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileCopyInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -508969,7 +509420,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileCopyInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileCopyInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileCopyInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileCopyInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -508981,7 +509432,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileDownloadInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileDownloadInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileDownloadInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileDownloadInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509098,7 +509549,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileDownloadInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileDownloadInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileDownloadInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileDownloadInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509110,7 +509561,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileProperties]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileProperties]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509122,7 +509573,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileProperties]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileProperties]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509134,7 +509585,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileUploadInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileUploadInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileUploadInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileUploadInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509187,7 +509638,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileUploadInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileUploadInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileUploadInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileUploadInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509199,7 +509650,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileRangeInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileRangeInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileRangeInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileRangeInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509253,7 +509704,7 @@
"System.Collections.Generic.IEnumerable`1[Azure.HttpRange]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Azure.HttpRange]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Azure.HttpRange, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Azure.HttpRange, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509265,7 +509716,7 @@
"Azure.HttpRange": {
"Namespace": "Azure",
"Name": "Azure.HttpRange",
- "AssemblyQualifiedName": "Azure.HttpRange, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.HttpRange, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
"Offset": "System.Int64",
"Length": "System.Nullable`1[System.Int64]"
@@ -509329,7 +509780,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileRangeInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareFileRangeInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileRangeInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareFileRangeInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509341,7 +509792,7 @@
"Azure.Pageable`1[Azure.Storage.Files.Shares.Models.ShareFileHandle]": {
"Namespace": "Azure",
"Name": "Azure.Pageable`1[Azure.Storage.Files.Shares.Models.ShareFileHandle]",
- "AssemblyQualifiedName": "Azure.Pageable`1[[Azure.Storage.Files.Shares.Models.ShareFileHandle, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Pageable`1[[Azure.Storage.Files.Shares.Models.ShareFileHandle, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509398,7 +509849,7 @@
"Azure.AsyncPageable`1[Azure.Storage.Files.Shares.Models.ShareFileHandle]": {
"Namespace": "Azure",
"Name": "Azure.AsyncPageable`1[Azure.Storage.Files.Shares.Models.ShareFileHandle]",
- "AssemblyQualifiedName": "Azure.AsyncPageable`1[[Azure.Storage.Files.Shares.Models.ShareFileHandle, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.AsyncPageable`1[[Azure.Storage.Files.Shares.Models.ShareFileHandle, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509410,7 +509861,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.CloseHandlesResult]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.CloseHandlesResult]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.CloseHandlesResult, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.CloseHandlesResult, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509461,7 +509912,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.CloseHandlesResult]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.CloseHandlesResult]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.CloseHandlesResult, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.CloseHandlesResult, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -509576,6 +510027,7 @@
"Name": "Azure.Storage.Files.Shares.ShareClient",
"AssemblyQualifiedName": "Azure.Storage.Files.Shares.ShareClient, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"Name": "System.String",
"Uri": "System.Uri"
@@ -509945,10 +510397,10 @@
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareProperties]]"
},
{
- "Name": "SetAccessTier",
+ "Name": "SetProperties",
"Parameters": [
{
- "Name": "accessTier",
+ "Name": "options",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -509959,10 +510411,10 @@
"ReturnType": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareInfo]"
},
{
- "Name": "SetAccessTierAsync",
+ "Name": "SetPropertiesAsync",
"Parameters": [
{
- "Name": "accessTier",
+ "Name": "options",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -510396,6 +510848,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -510494,6 +510970,7 @@
"Name": "Azure.Storage.Files.Shares.ShareDirectoryClient",
"AssemblyQualifiedName": "Azure.Storage.Files.Shares.ShareDirectoryClient, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"ShareName": "System.String",
"Name": "System.String",
@@ -511165,6 +511642,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -511269,7 +511770,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareDirectoryInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareDirectoryInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareDirectoryInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareDirectoryInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511321,7 +511822,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareDirectoryInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareDirectoryInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareDirectoryInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareDirectoryInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511333,7 +511834,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareDirectoryProperties]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareDirectoryProperties]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareDirectoryProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareDirectoryProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511387,7 +511888,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareDirectoryProperties]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareDirectoryProperties]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareDirectoryProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareDirectoryProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511399,7 +511900,7 @@
"Azure.Pageable`1[Azure.Storage.Files.Shares.Models.ShareFileItem]": {
"Namespace": "Azure",
"Name": "Azure.Pageable`1[Azure.Storage.Files.Shares.Models.ShareFileItem]",
- "AssemblyQualifiedName": "Azure.Pageable`1[[Azure.Storage.Files.Shares.Models.ShareFileItem, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Pageable`1[[Azure.Storage.Files.Shares.Models.ShareFileItem, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511451,7 +511952,7 @@
"Azure.AsyncPageable`1[Azure.Storage.Files.Shares.Models.ShareFileItem]": {
"Namespace": "Azure",
"Name": "Azure.AsyncPageable`1[Azure.Storage.Files.Shares.Models.ShareFileItem]",
- "AssemblyQualifiedName": "Azure.AsyncPageable`1[[Azure.Storage.Files.Shares.Models.ShareFileItem, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.AsyncPageable`1[[Azure.Storage.Files.Shares.Models.ShareFileItem, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511463,7 +511964,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.ShareDirectoryClient]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.ShareDirectoryClient]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.ShareDirectoryClient, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.ShareDirectoryClient, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511475,7 +511976,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.ShareDirectoryClient]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.ShareDirectoryClient]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.ShareDirectoryClient, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.ShareDirectoryClient, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511487,7 +511988,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.ShareFileClient]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.ShareFileClient]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.ShareFileClient, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.ShareFileClient, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511499,7 +512000,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.ShareFileClient]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.ShareFileClient]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.ShareFileClient, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.ShareFileClient, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511511,7 +512012,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511562,7 +512063,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511574,7 +512075,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareSnapshotInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareSnapshotInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareSnapshotInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareSnapshotInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511626,7 +512127,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareSnapshotInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareSnapshotInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareSnapshotInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareSnapshotInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511638,7 +512139,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareProperties]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareProperties]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511650,7 +512151,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareProperties]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareProperties]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareProperties, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511662,7 +512163,7 @@
"Azure.Response`1[System.Collections.Generic.IEnumerable`1[Azure.Storage.Files.Shares.Models.ShareSignedIdentifier]]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[System.Collections.Generic.IEnumerable`1[Azure.Storage.Files.Shares.Models.ShareSignedIdentifier]]",
- "AssemblyQualifiedName": "Azure.Response`1[[System.Collections.Generic.IEnumerable`1[[Azure.Storage.Files.Shares.Models.ShareSignedIdentifier, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[System.Collections.Generic.IEnumerable`1[[Azure.Storage.Files.Shares.Models.ShareSignedIdentifier, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511779,7 +512280,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[System.Collections.Generic.IEnumerable`1[Azure.Storage.Files.Shares.Models.ShareSignedIdentifier]]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[System.Collections.Generic.IEnumerable`1[Azure.Storage.Files.Shares.Models.ShareSignedIdentifier]]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[System.Collections.Generic.IEnumerable`1[[Azure.Storage.Files.Shares.Models.ShareSignedIdentifier, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[System.Collections.Generic.IEnumerable`1[[Azure.Storage.Files.Shares.Models.ShareSignedIdentifier, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511791,7 +512292,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareStatistics]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareStatistics]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareStatistics, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareStatistics, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511842,7 +512343,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareStatistics]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.ShareStatistics]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareStatistics, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.ShareStatistics, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511854,7 +512355,7 @@
"Azure.Response`1[System.String]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[System.String]",
- "AssemblyQualifiedName": "Azure.Response`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511866,7 +512367,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[System.String]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[System.String]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511878,7 +512379,7 @@
"Azure.Response`1[Azure.Storage.Files.Shares.Models.PermissionInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.Shares.Models.PermissionInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.PermissionInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.Shares.Models.PermissionInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -511928,7 +512429,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.PermissionInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.Shares.Models.PermissionInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.PermissionInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.Shares.Models.PermissionInfo, Azure.Storage.Files.Shares, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -549401,7 +549902,7 @@
"Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"RetentionDays": "System.Nullable`1[System.Int32]"
@@ -549456,7 +549957,7 @@
"Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"IndexDocument": "System.String",
@@ -549522,7 +550023,7 @@
"Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule",
"GenericTypeArguments": [],
@@ -549532,7 +550033,7 @@
"Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxAgeInSeconds": "System.Int32",
"AllowedOrigins": "System.String[]",
@@ -549967,7 +550468,7 @@
"Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage",
"Name": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext",
"TableStorageAccount": "Microsoft.Azure.Cosmos.Table.CloudStorageAccount",
@@ -550041,7 +550542,7 @@
"Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential": {
"Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common",
"Name": "Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -550120,7 +550621,7 @@
"Azure.Core.AccessToken": {
"Namespace": "Azure.Core",
"Name": "Azure.Core.AccessToken",
- "AssemblyQualifiedName": "Azure.Core.AccessToken, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Core.AccessToken, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
"ExpiresOn": "System.DateTimeOffset",
"Token": "System.String"
@@ -550174,7 +550675,7 @@
"System.Threading.Tasks.ValueTask`1[Azure.Core.AccessToken]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.ValueTask`1[Azure.Core.AccessToken]",
- "AssemblyQualifiedName": "System.Threading.Tasks.ValueTask`1[[Azure.Core.AccessToken, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.ValueTask`1[[Azure.Core.AccessToken, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -550188,6 +550689,7 @@
"Name": "Azure.Storage.Blobs.BlobContainerClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.BlobContainerClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"Name": "System.String",
"Uri": "System.Uri"
@@ -550797,6 +551299,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[System.Boolean]]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -550913,6 +551439,7 @@
"Name": "Azure.Storage.Blobs.BlobClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.BlobClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -552259,6 +552786,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -552381,7 +552932,7 @@
"Azure.Response`1[Azure.Storage.Blobs.Models.BlobContentInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Blobs.Models.BlobContentInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContentInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContentInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -552437,7 +552988,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobContentInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobContentInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContentInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContentInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -552451,6 +553002,7 @@
"Name": "Azure.Storage.Blobs.Specialized.BlobBaseClient",
"AssemblyQualifiedName": "Azure.Storage.Blobs.Specialized.BlobBaseClient, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"BlobContainerName": "System.String",
"Name": "System.String",
@@ -553385,6 +553937,30 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -553507,7 +554083,7 @@
"Azure.Response`1[Azure.Storage.Blobs.Models.BlobDownloadInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Blobs.Models.BlobDownloadInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobDownloadInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobDownloadInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554312,7 +554888,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobDownloadInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobDownloadInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobDownloadInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobDownloadInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554429,7 +555005,7 @@
"System.Threading.Tasks.ValueTask`1[Azure.Response`1[System.Int64]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.ValueTask`1[Azure.Response`1[System.Int64]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.ValueTask`1[[Azure.Response`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.ValueTask`1[[Azure.Response`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554441,7 +555017,7 @@
"Azure.Response`1[System.Int64]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[System.Int64]",
- "AssemblyQualifiedName": "Azure.Response`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554453,7 +555029,7 @@
"System.Threading.Tasks.ValueTask`1[Azure.Response]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.ValueTask`1[Azure.Response]",
- "AssemblyQualifiedName": "System.Threading.Tasks.ValueTask`1[[Azure.Response, Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.ValueTask`1[[Azure.Response, Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554477,7 +555053,7 @@
"Azure.Response`1[Azure.Storage.Blobs.Models.BlobCopyInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Blobs.Models.BlobCopyInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobCopyInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobCopyInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554531,7 +555107,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobCopyInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobCopyInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobCopyInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobCopyInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554543,7 +555119,7 @@
"Azure.Response`1[Azure.Storage.Blobs.Models.BlobProperties]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Blobs.Models.BlobProperties]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobProperties, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobProperties, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554640,7 +555216,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobProperties]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobProperties]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobProperties, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobProperties, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554652,7 +555228,7 @@
"Azure.Response`1[Azure.Storage.Blobs.Models.BlobInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Blobs.Models.BlobInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554705,7 +555281,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554717,7 +555293,7 @@
"Azure.Response`1[Azure.Storage.Blobs.Models.BlobSnapshotInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Blobs.Models.BlobSnapshotInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobSnapshotInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobSnapshotInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554771,7 +555347,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobSnapshotInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobSnapshotInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobSnapshotInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobSnapshotInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554783,7 +555359,7 @@
"Azure.Response`1[Azure.Storage.Blobs.Models.GetBlobTagResult]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Blobs.Models.GetBlobTagResult]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.GetBlobTagResult, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.GetBlobTagResult, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554839,7 +555415,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.GetBlobTagResult]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.GetBlobTagResult]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.GetBlobTagResult, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.GetBlobTagResult, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554851,7 +555427,7 @@
"Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554902,7 +555478,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerInfo, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -554914,7 +555490,7 @@
"Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerProperties]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerProperties]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerProperties, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerProperties, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -555119,7 +555695,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerProperties]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerProperties]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerProperties, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerProperties, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -555131,7 +555707,7 @@
"Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerAccessPolicy]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerAccessPolicy]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerAccessPolicy, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerAccessPolicy, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -555295,7 +555871,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerAccessPolicy]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Blobs.Models.BlobContainerAccessPolicy]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerAccessPolicy, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Blobs.Models.BlobContainerAccessPolicy, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -555307,7 +555883,7 @@
"Azure.Pageable`1[Azure.Storage.Blobs.Models.BlobItem]": {
"Namespace": "Azure",
"Name": "Azure.Pageable`1[Azure.Storage.Blobs.Models.BlobItem]",
- "AssemblyQualifiedName": "Azure.Pageable`1[[Azure.Storage.Blobs.Models.BlobItem, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Pageable`1[[Azure.Storage.Blobs.Models.BlobItem, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -555761,7 +556337,7 @@
"Azure.AsyncPageable`1[Azure.Storage.Blobs.Models.BlobItem]": {
"Namespace": "Azure",
"Name": "Azure.AsyncPageable`1[Azure.Storage.Blobs.Models.BlobItem]",
- "AssemblyQualifiedName": "Azure.AsyncPageable`1[[Azure.Storage.Blobs.Models.BlobItem, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.AsyncPageable`1[[Azure.Storage.Blobs.Models.BlobItem, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -555773,7 +556349,7 @@
"Azure.Pageable`1[Azure.Storage.Blobs.Models.BlobHierarchyItem]": {
"Namespace": "Azure",
"Name": "Azure.Pageable`1[Azure.Storage.Blobs.Models.BlobHierarchyItem]",
- "AssemblyQualifiedName": "Azure.Pageable`1[[Azure.Storage.Blobs.Models.BlobHierarchyItem, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Pageable`1[[Azure.Storage.Blobs.Models.BlobHierarchyItem, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -555826,7 +556402,7 @@
"Azure.AsyncPageable`1[Azure.Storage.Blobs.Models.BlobHierarchyItem]": {
"Namespace": "Azure",
"Name": "Azure.AsyncPageable`1[Azure.Storage.Blobs.Models.BlobHierarchyItem]",
- "AssemblyQualifiedName": "Azure.AsyncPageable`1[[Azure.Storage.Blobs.Models.BlobHierarchyItem, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.AsyncPageable`1[[Azure.Storage.Blobs.Models.BlobHierarchyItem, Azure.Storage.Blobs, Version=12.7.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -555838,7 +556414,7 @@
"Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError[]": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError[]",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError",
"GenericTypeArguments": [],
@@ -555848,7 +556424,7 @@
"Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError": {
"Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel",
"Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError",
- "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.PSBlobQueryError, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsFatal": "System.Boolean",
"Position": "System.Int64",
@@ -555912,6 +556488,7 @@
"Name": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient",
"AssemblyQualifiedName": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"FileSystemName": "System.String",
"Path": "System.String",
@@ -556617,6 +557194,66 @@
],
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response]"
},
+ {
+ "Name": "GetPaths",
+ "Parameters": [
+ {
+ "Name": "recursive",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "userPrincipalName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "cancellationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "Azure.Pageable`1[Azure.Storage.Files.DataLake.Models.PathItem]"
+ },
+ {
+ "Name": "GetPathsAsync",
+ "Parameters": [
+ {
+ "Name": "recursive",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "userPrincipalName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "cancellationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "Azure.AsyncPageable`1[Azure.Storage.Files.DataLake.Models.PathItem]"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "Create",
"Parameters": [
@@ -557157,6 +557794,7 @@
"Name": "Azure.Storage.Files.DataLake.DataLakeFileClient",
"AssemblyQualifiedName": "Azure.Storage.Files.DataLake.DataLakeFileClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"MaxUploadBytes": "System.Int32",
"MaxUploadLongBytes": "System.Int64",
"AccountName": "System.String",
@@ -558848,6 +559486,30 @@
],
"ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathProperties]"
},
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expiresOn",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
+ {
+ "Name": "GenerateSasUri",
+ "Parameters": [
+ {
+ "Name": "builder",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Uri"
+ },
{
"Name": "ToString",
"Parameters": [],
@@ -558968,7 +559630,7 @@
"Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathInfo, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathInfo, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -559019,7 +559681,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathInfo, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathInfo, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -559031,7 +559693,7 @@
"Azure.Response`1[Azure.Storage.Files.DataLake.DataLakeFileClient]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.DataLake.DataLakeFileClient]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakeFileClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakeFileClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -559043,7 +559705,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.DataLakeFileClient]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.DataLakeFileClient]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakeFileClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakeFileClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -559055,7 +559717,7 @@
"Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathAccessControl]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathAccessControl]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathAccessControl, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathAccessControl, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -559224,7 +559886,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathAccessControl]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathAccessControl]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathAccessControl, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathAccessControl, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -559236,7 +559898,7 @@
"Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathProperties]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathProperties]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathProperties, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathProperties, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -559694,7 +560356,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathProperties]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathProperties]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathProperties, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.Models.PathProperties, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -559706,7 +560368,7 @@
"Azure.Response`1[Azure.Storage.Files.DataLake.Models.FileDownloadInfo]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.FileDownloadInfo]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.Models.FileDownloadInfo, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.Models.FileDownloadInfo, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -559817,7 +560479,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.FileDownloadInfo]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.FileDownloadInfo]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.Models.FileDownloadInfo, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.Models.FileDownloadInfo, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -559829,7 +560491,7 @@
"Azure.Response`1[Azure.Storage.Files.DataLake.DataLakePathClient]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.DataLake.DataLakePathClient]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakePathClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakePathClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -559843,6 +560505,7 @@
"Name": "Azure.Storage.Files.DataLake.DataLakePathClient",
"AssemblyQualifiedName": "Azure.Storage.Files.DataLake.DataLakePathClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {
+ "CanGenerateSasUri": "System.Boolean",
"AccountName": "System.String",
"FileSystemName": "System.String",
"Path": "System.String",
@@ -560187,10 +560850,194 @@
"ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]"
},
{
- "Name": "SetAccessControlListAsync",
+ "Name": "SetAccessControlListAsync",
+ "Parameters": [
+ {
+ "Name": "accessControlList",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "owner",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "group",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "conditions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "cancellationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]]"
+ },
+ {
+ "Name": "SetAccessControlRecursive",
+ "Parameters": [
+ {
+ "Name": "accessControlList",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "continuationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "options",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "cancellationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]"
+ },
+ {
+ "Name": "SetAccessControlRecursiveAsync",
+ "Parameters": [
+ {
+ "Name": "accessControlList",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "continuationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "options",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "cancellationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]]"
+ },
+ {
+ "Name": "UpdateAccessControlRecursive",
+ "Parameters": [
+ {
+ "Name": "accessControlList",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "continuationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "options",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "cancellationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]"
+ },
+ {
+ "Name": "UpdateAccessControlRecursiveAsync",
+ "Parameters": [
+ {
+ "Name": "accessControlList",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "continuationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "options",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "cancellationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]]"
+ },
+ {
+ "Name": "RemoveAccessControlRecursive",
+ "Parameters": [
+ {
+ "Name": "accessControlList",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "continuationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "options",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "cancellationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]"
+ },
+ {
+ "Name": "RemoveAccessControlRecursiveAsync",
+ "Parameters": [
+ {
+ "Name": "accessControlList",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "continuationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "options",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "cancellationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]]"
+ },
+ {
+ "Name": "SetPermissions",
+ "Parameters": [
+ {
+ "Name": "permissions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "owner",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "group",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "conditions",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "cancellationToken",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]"
+ },
+ {
+ "Name": "SetPermissionsAsync",
"Parameters": [
{
- "Name": "accessControlList",
+ "Name": "permissions",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -560213,106 +561060,10 @@
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]]"
},
{
- "Name": "SetAccessControlRecursive",
- "Parameters": [
- {
- "Name": "accessControlList",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "continuationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "options",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "cancellationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]"
- },
- {
- "Name": "SetAccessControlRecursiveAsync",
- "Parameters": [
- {
- "Name": "accessControlList",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "continuationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "options",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "cancellationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]]"
- },
- {
- "Name": "UpdateAccessControlRecursive",
- "Parameters": [
- {
- "Name": "accessControlList",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "continuationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "options",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "cancellationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]"
- },
- {
- "Name": "UpdateAccessControlRecursiveAsync",
- "Parameters": [
- {
- "Name": "accessControlList",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "continuationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "options",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "cancellationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]]"
- },
- {
- "Name": "RemoveAccessControlRecursive",
+ "Name": "GetProperties",
"Parameters": [
{
- "Name": "accessControlList",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "continuationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "options",
+ "Name": "conditions",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -560320,21 +561071,13 @@
"Type": "System.Reflection.RuntimeParameterInfo"
}
],
- "ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]"
+ "ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathProperties]"
},
{
- "Name": "RemoveAccessControlRecursiveAsync",
+ "Name": "GetPropertiesAsync",
"Parameters": [
{
- "Name": "accessControlList",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "continuationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "options",
+ "Name": "conditions",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -560342,21 +561085,13 @@
"Type": "System.Reflection.RuntimeParameterInfo"
}
],
- "ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]]"
+ "ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathProperties]]"
},
{
- "Name": "SetPermissions",
+ "Name": "SetHttpHeaders",
"Parameters": [
{
- "Name": "permissions",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "owner",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "group",
+ "Name": "httpHeaders",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -560371,18 +561106,10 @@
"ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]"
},
{
- "Name": "SetPermissionsAsync",
+ "Name": "SetHttpHeadersAsync",
"Parameters": [
{
- "Name": "permissions",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "owner",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "group",
+ "Name": "httpHeaders",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -560397,38 +561124,10 @@
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]]"
},
{
- "Name": "GetProperties",
- "Parameters": [
- {
- "Name": "conditions",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "cancellationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathProperties]"
- },
- {
- "Name": "GetPropertiesAsync",
- "Parameters": [
- {
- "Name": "conditions",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "cancellationToken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathProperties]]"
- },
- {
- "Name": "SetHttpHeaders",
+ "Name": "SetMetadata",
"Parameters": [
{
- "Name": "httpHeaders",
+ "Name": "metadata",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -560443,10 +561142,10 @@
"ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]"
},
{
- "Name": "SetHttpHeadersAsync",
+ "Name": "SetMetadataAsync",
"Parameters": [
{
- "Name": "httpHeaders",
+ "Name": "metadata",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -560461,40 +561160,28 @@
"ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]]"
},
{
- "Name": "SetMetadata",
+ "Name": "GenerateSasUri",
"Parameters": [
{
- "Name": "metadata",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "conditions",
+ "Name": "permissions",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
- "Name": "cancellationToken",
+ "Name": "expiresOn",
"Type": "System.Reflection.RuntimeParameterInfo"
}
],
- "ReturnType": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]"
+ "ReturnType": "System.Uri"
},
{
- "Name": "SetMetadataAsync",
+ "Name": "GenerateSasUri",
"Parameters": [
{
- "Name": "metadata",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "conditions",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "cancellationToken",
+ "Name": "builder",
"Type": "System.Reflection.RuntimeParameterInfo"
}
],
- "ReturnType": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.PathInfo]]"
+ "ReturnType": "System.Uri"
},
{
"Name": "ToString",
@@ -560630,7 +561317,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.DataLakePathClient]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.DataLakePathClient]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakePathClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakePathClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -560642,7 +561329,7 @@
"Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -560784,7 +561471,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.Models.AccessControlChangeResult, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -560796,7 +561483,7 @@
"Azure.Response`1[Azure.Storage.Files.DataLake.DataLakeDirectoryClient]": {
"Namespace": "Azure",
"Name": "Azure.Response`1[Azure.Storage.Files.DataLake.DataLakeDirectoryClient]",
- "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakeDirectoryClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "AssemblyQualifiedName": "Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakeDirectoryClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -560808,7 +561495,7 @@
"System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.DataLakeDirectoryClient]]": {
"Namespace": "System.Threading.Tasks",
"Name": "System.Threading.Tasks.Task`1[Azure.Response`1[Azure.Storage.Files.DataLake.DataLakeDirectoryClient]]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakeDirectoryClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[Azure.Response`1[[Azure.Storage.Files.DataLake.DataLakeDirectoryClient, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -560816,6 +561503,75 @@
],
"Methods": [],
"Constructors": []
+ },
+ "Azure.Pageable`1[Azure.Storage.Files.DataLake.Models.PathItem]": {
+ "Namespace": "Azure",
+ "Name": "Azure.Pageable`1[Azure.Storage.Files.DataLake.Models.PathItem]",
+ "AssemblyQualifiedName": "Azure.Pageable`1[[Azure.Storage.Files.DataLake.Models.PathItem, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Azure.Storage.Files.DataLake.Models.PathItem"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Azure.Storage.Files.DataLake.Models.PathItem": {
+ "Namespace": "Azure.Storage.Files.DataLake.Models",
+ "Name": "Azure.Storage.Files.DataLake.Models.PathItem",
+ "AssemblyQualifiedName": "Azure.Storage.Files.DataLake.Models.PathItem, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "Properties": {
+ "ETag": "Azure.ETag",
+ "LastModified": "System.DateTimeOffset",
+ "IsDirectory": "System.Nullable`1[System.Boolean]",
+ "ContentLength": "System.Nullable`1[System.Int64]",
+ "Name": "System.String",
+ "Owner": "System.String",
+ "Group": "System.String",
+ "Permissions": "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": []
+ },
+ "Azure.AsyncPageable`1[Azure.Storage.Files.DataLake.Models.PathItem]": {
+ "Namespace": "Azure",
+ "Name": "Azure.AsyncPageable`1[Azure.Storage.Files.DataLake.Models.PathItem]",
+ "AssemblyQualifiedName": "Azure.AsyncPageable`1[[Azure.Storage.Files.DataLake.Models.PathItem, Azure.Storage.Files.DataLake, Version=12.5.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8]], Azure.Core, Version=1.6.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Azure.Storage.Files.DataLake.Models.PathItem"
+ ],
+ "Methods": [],
+ "Constructors": []
}
}
}
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.StorageSync.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.StorageSync.dll.json
index 94d3940f4c29..a21f399368b8 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.StorageSync.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.StorageSync.dll.json
@@ -6,7 +6,7 @@
"Name": "Get-AzStorageSyncGroup",
"ClassName": "Microsoft.Azure.Commands.StorageSync.SyncGroup.GetSyncGroupCommand",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "StringParameterSet",
"OutputTypes": [
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -113,7 +113,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -373,7 +373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -681,7 +681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -780,7 +780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -1040,7 +1040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -1367,7 +1367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -1501,7 +1501,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1519,7 +1519,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1537,7 +1537,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1594,7 +1594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -1658,7 +1658,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1682,7 +1682,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1706,7 +1706,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1798,7 +1798,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1822,7 +1822,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1846,7 +1846,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1990,7 +1990,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2014,7 +2014,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2038,7 +2038,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2106,7 +2106,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2130,7 +2130,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2154,7 +2154,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2221,7 +2221,7 @@
"Name": "Get-AzStorageSyncService",
"ClassName": "Microsoft.Azure.Commands.StorageSync.StorageSyncService.GetStorageSyncServiceCommand",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "ParentStringParameterSet",
"OutputTypes": [
@@ -2229,7 +2229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -2579,7 +2579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -2736,7 +2736,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2920,7 +2920,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2988,7 +2988,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3082,7 +3082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -3197,7 +3197,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3215,7 +3215,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3233,7 +3233,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3290,7 +3290,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -3355,7 +3355,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3379,7 +3379,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3403,7 +3403,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3495,7 +3495,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3519,7 +3519,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3543,7 +3543,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3661,7 +3661,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3685,7 +3685,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3709,7 +3709,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3777,7 +3777,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3801,7 +3801,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3825,7 +3825,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3900,7 +3900,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -3998,7 +3998,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -4116,7 +4116,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4276,7 +4276,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4344,7 +4344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -4409,7 +4409,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4501,7 +4501,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4569,7 +4569,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4636,7 +4636,7 @@
"Name": "Get-AzStorageSyncServer",
"ClassName": "Microsoft.Azure.Commands.StorageSync.Cmdlets.GetRegisteredServerCommand",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "StringParameterSet",
"OutputTypes": [
@@ -4644,7 +4644,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerManagementErrorCode": "System.Nullable`1[System.Int32]",
"StorageSyncServiceName": "System.String",
@@ -4761,7 +4761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -5021,7 +5021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -5329,7 +5329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerManagementErrorCode": "System.Nullable`1[System.Int32]",
"StorageSyncServiceName": "System.String",
@@ -5446,7 +5446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -5525,7 +5525,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5632,7 +5632,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5702,7 +5702,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -5767,7 +5767,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5861,7 +5861,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5929,7 +5929,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6023,7 +6023,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerManagementErrorCode": "System.Nullable`1[System.Int32]",
"StorageSyncServiceName": "System.String",
@@ -6175,7 +6175,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6193,7 +6193,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6211,7 +6211,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6268,7 +6268,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSRegisteredServer, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerManagementErrorCode": "System.Nullable`1[System.Int32]",
"StorageSyncServiceName": "System.String",
@@ -6350,7 +6350,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6374,7 +6374,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6398,7 +6398,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6490,7 +6490,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6514,7 +6514,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6538,7 +6538,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6682,7 +6682,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6706,7 +6706,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6730,7 +6730,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6798,7 +6798,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6822,7 +6822,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6846,7 +6846,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6980,7 +6980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -7059,7 +7059,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7166,7 +7166,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7236,7 +7236,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSStorageSyncService, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
@@ -7301,7 +7301,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7395,7 +7395,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7463,7 +7463,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7530,7 +7530,7 @@
"Name": "Get-AzStorageSyncServerEndpoint",
"ClassName": "Microsoft.Azure.Commands.StorageSync.Cmdlets.GetServerEndpointCommand",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "StringParameterSet",
"OutputTypes": [
@@ -7538,18 +7538,20 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncStatus": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth",
"TierFilesOlderThanDays": "System.Nullable`1[System.Int32]",
"VolumeFreeSpacePercent": "System.Nullable`1[System.Int32]",
+ "SyncGroupName": "System.String",
"ResourceId": "System.String",
+ "LocalCacheMode": "System.String",
+ "InitialDownloadPolicy": "System.String",
"OfflineDataTransferStorageAccountTenantId": "System.String",
"OfflineDataTransferStorageAccountResourceId": "System.String",
"OfflineDataTransferShareName": "System.String",
"OfflineDataTransfer": "System.String",
"CloudTiering": "System.String",
- "SyncGroupName": "System.String",
"FriendlyName": "System.String",
"LastOperationName": "System.String",
"LastWorkflowId": "System.String",
@@ -7668,7 +7670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -7951,7 +7953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -8374,18 +8376,20 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncStatus": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth",
"TierFilesOlderThanDays": "System.Nullable`1[System.Int32]",
"VolumeFreeSpacePercent": "System.Nullable`1[System.Int32]",
+ "SyncGroupName": "System.String",
"ResourceId": "System.String",
+ "LocalCacheMode": "System.String",
+ "InitialDownloadPolicy": "System.String",
"OfflineDataTransferStorageAccountTenantId": "System.String",
"OfflineDataTransferStorageAccountResourceId": "System.String",
"OfflineDataTransferShareName": "System.String",
"OfflineDataTransfer": "System.String",
"CloudTiering": "System.String",
- "SyncGroupName": "System.String",
"FriendlyName": "System.String",
"LastOperationName": "System.String",
"LastWorkflowId": "System.String",
@@ -8481,7 +8485,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8499,7 +8503,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8704,7 +8708,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8728,7 +8732,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8868,7 +8872,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8892,7 +8896,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8963,18 +8967,20 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncStatus": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth",
"TierFilesOlderThanDays": "System.Nullable`1[System.Int32]",
"VolumeFreeSpacePercent": "System.Nullable`1[System.Int32]",
+ "SyncGroupName": "System.String",
"ResourceId": "System.String",
+ "LocalCacheMode": "System.String",
+ "InitialDownloadPolicy": "System.String",
"OfflineDataTransferStorageAccountTenantId": "System.String",
"OfflineDataTransferStorageAccountResourceId": "System.String",
"OfflineDataTransferShareName": "System.String",
"OfflineDataTransfer": "System.String",
"CloudTiering": "System.String",
- "SyncGroupName": "System.String",
"FriendlyName": "System.String",
"LastOperationName": "System.String",
"LastWorkflowId": "System.String",
@@ -9088,7 +9094,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9112,7 +9118,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9228,7 +9234,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9252,7 +9258,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9327,18 +9333,20 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncStatus": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth",
"TierFilesOlderThanDays": "System.Nullable`1[System.Int32]",
"VolumeFreeSpacePercent": "System.Nullable`1[System.Int32]",
+ "SyncGroupName": "System.String",
"ResourceId": "System.String",
+ "LocalCacheMode": "System.String",
+ "InitialDownloadPolicy": "System.String",
"OfflineDataTransferStorageAccountTenantId": "System.String",
"OfflineDataTransferStorageAccountResourceId": "System.String",
"OfflineDataTransferShareName": "System.String",
"OfflineDataTransfer": "System.String",
"CloudTiering": "System.String",
- "SyncGroupName": "System.String",
"FriendlyName": "System.String",
"LastOperationName": "System.String",
"LastWorkflowId": "System.String",
@@ -9457,7 +9465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -9591,7 +9599,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9629,7 +9637,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9679,13 +9687,56 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "InitialDownloadPolicy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "AvoidTieredFiles",
+ "NamespaceOnly",
+ "NamespaceThenModifiedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "LocalCacheMode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "DownloadNewAndModifiedFiles",
+ "UpdateLocallyCachedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9890,7 +9941,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9940,7 +9991,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10007,6 +10058,61 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "InitialDownloadPolicy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "AvoidTieredFiles",
+ "NamespaceOnly",
+ "NamespaceThenModifiedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LocalCacheMode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "DownloadNewAndModifiedFiles",
+ "UpdateLocallyCachedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -10014,7 +10120,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10084,7 +10190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -10222,7 +10328,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10272,7 +10378,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10339,6 +10445,61 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "InitialDownloadPolicy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "AvoidTieredFiles",
+ "NamespaceOnly",
+ "NamespaceThenModifiedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LocalCacheMode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "DownloadNewAndModifiedFiles",
+ "UpdateLocallyCachedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -10346,7 +10507,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10514,7 +10675,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10564,7 +10725,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10631,6 +10792,61 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "InitialDownloadPolicy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "AvoidTieredFiles",
+ "NamespaceOnly",
+ "NamespaceThenModifiedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LocalCacheMode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "DownloadNewAndModifiedFiles",
+ "UpdateLocallyCachedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -10638,7 +10854,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10780,7 +10996,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10830,7 +11046,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10897,6 +11113,61 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "InitialDownloadPolicy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "AvoidTieredFiles",
+ "NamespaceOnly",
+ "NamespaceThenModifiedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LocalCacheMode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "DownloadNewAndModifiedFiles",
+ "UpdateLocallyCachedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -10904,7 +11175,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10998,18 +11269,20 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncStatus": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth",
"TierFilesOlderThanDays": "System.Nullable`1[System.Int32]",
"VolumeFreeSpacePercent": "System.Nullable`1[System.Int32]",
+ "SyncGroupName": "System.String",
"ResourceId": "System.String",
+ "LocalCacheMode": "System.String",
+ "InitialDownloadPolicy": "System.String",
"OfflineDataTransferStorageAccountTenantId": "System.String",
"OfflineDataTransferStorageAccountResourceId": "System.String",
"OfflineDataTransferShareName": "System.String",
"OfflineDataTransfer": "System.String",
"CloudTiering": "System.String",
- "SyncGroupName": "System.String",
"FriendlyName": "System.String",
"LastOperationName": "System.String",
"LastWorkflowId": "System.String",
@@ -11161,7 +11434,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11179,7 +11452,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11197,7 +11470,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11254,18 +11527,20 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncStatus": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth",
"TierFilesOlderThanDays": "System.Nullable`1[System.Int32]",
"VolumeFreeSpacePercent": "System.Nullable`1[System.Int32]",
+ "SyncGroupName": "System.String",
"ResourceId": "System.String",
+ "LocalCacheMode": "System.String",
+ "InitialDownloadPolicy": "System.String",
"OfflineDataTransferStorageAccountTenantId": "System.String",
"OfflineDataTransferStorageAccountResourceId": "System.String",
"OfflineDataTransferShareName": "System.String",
"OfflineDataTransfer": "System.String",
"CloudTiering": "System.String",
- "SyncGroupName": "System.String",
"FriendlyName": "System.String",
"LastOperationName": "System.String",
"LastWorkflowId": "System.String",
@@ -11331,7 +11606,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11355,7 +11630,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11379,7 +11654,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11471,7 +11746,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11495,7 +11770,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11519,7 +11794,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11685,7 +11960,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11709,7 +11984,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11733,7 +12008,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11801,7 +12076,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11825,7 +12100,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11849,7 +12124,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11924,18 +12199,20 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncStatus": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth",
"TierFilesOlderThanDays": "System.Nullable`1[System.Int32]",
"VolumeFreeSpacePercent": "System.Nullable`1[System.Int32]",
+ "SyncGroupName": "System.String",
"ResourceId": "System.String",
+ "LocalCacheMode": "System.String",
+ "InitialDownloadPolicy": "System.String",
"OfflineDataTransferStorageAccountTenantId": "System.String",
"OfflineDataTransferStorageAccountResourceId": "System.String",
"OfflineDataTransferShareName": "System.String",
"OfflineDataTransfer": "System.String",
"CloudTiering": "System.String",
- "SyncGroupName": "System.String",
"FriendlyName": "System.String",
"LastOperationName": "System.String",
"LastWorkflowId": "System.String",
@@ -12093,18 +12370,20 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncStatus": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth",
"TierFilesOlderThanDays": "System.Nullable`1[System.Int32]",
"VolumeFreeSpacePercent": "System.Nullable`1[System.Int32]",
+ "SyncGroupName": "System.String",
"ResourceId": "System.String",
+ "LocalCacheMode": "System.String",
+ "InitialDownloadPolicy": "System.String",
"OfflineDataTransferStorageAccountTenantId": "System.String",
"OfflineDataTransferStorageAccountResourceId": "System.String",
"OfflineDataTransferShareName": "System.String",
"OfflineDataTransfer": "System.String",
"CloudTiering": "System.String",
- "SyncGroupName": "System.String",
"FriendlyName": "System.String",
"LastOperationName": "System.String",
"LastWorkflowId": "System.String",
@@ -12164,7 +12443,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12202,7 +12481,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12234,13 +12513,34 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "LocalCacheMode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "DownloadNewAndModifiedFiles",
+ "UpdateLocallyCachedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12397,7 +12697,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12447,7 +12747,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12490,6 +12790,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "LocalCacheMode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "DownloadNewAndModifiedFiles",
+ "UpdateLocallyCachedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -12497,7 +12824,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12589,7 +12916,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12639,7 +12966,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12682,6 +13009,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "LocalCacheMode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "DownloadNewAndModifiedFiles",
+ "UpdateLocallyCachedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -12689,7 +13043,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12760,18 +13114,20 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncStatus": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth",
"TierFilesOlderThanDays": "System.Nullable`1[System.Int32]",
"VolumeFreeSpacePercent": "System.Nullable`1[System.Int32]",
+ "SyncGroupName": "System.String",
"ResourceId": "System.String",
+ "LocalCacheMode": "System.String",
+ "InitialDownloadPolicy": "System.String",
"OfflineDataTransferStorageAccountTenantId": "System.String",
"OfflineDataTransferStorageAccountResourceId": "System.String",
"OfflineDataTransferShareName": "System.String",
"OfflineDataTransfer": "System.String",
"CloudTiering": "System.String",
- "SyncGroupName": "System.String",
"FriendlyName": "System.String",
"LastOperationName": "System.String",
"LastWorkflowId": "System.String",
@@ -12837,7 +13193,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12887,7 +13243,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12930,6 +13286,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "LocalCacheMode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "DownloadNewAndModifiedFiles",
+ "UpdateLocallyCachedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -12937,7 +13320,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13005,7 +13388,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13055,7 +13438,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13098,6 +13481,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "LocalCacheMode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "DownloadNewAndModifiedFiles",
+ "UpdateLocallyCachedFiles"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -13105,7 +13515,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13172,7 +13582,7 @@
"Name": "Get-AzStorageSyncCloudEndpoint",
"ClassName": "Microsoft.Azure.Commands.StorageSync.CloudEndpoint.GetCloudEndpointCommand",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "StringParameterSet",
"OutputTypes": [
@@ -13180,7 +13590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupEnabled": "System.Nullable`1[System.Boolean]",
"SyncGroupName": "System.String",
@@ -13305,7 +13715,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -13588,7 +13998,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -14012,7 +14422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupEnabled": "System.Nullable`1[System.Boolean]",
"SyncGroupName": "System.String",
@@ -14096,7 +14506,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14132,7 +14542,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14150,7 +14560,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14331,7 +14741,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14355,7 +14765,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14379,7 +14789,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14571,7 +14981,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14595,7 +15005,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14713,7 +15123,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14737,7 +15147,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14761,7 +15171,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14879,7 +15289,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14903,7 +15313,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14973,7 +15383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupEnabled": "System.Nullable`1[System.Boolean]",
"SyncGroupName": "System.String",
@@ -15069,7 +15479,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15093,7 +15503,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15117,7 +15527,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15187,7 +15597,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupEnabled": "System.Nullable`1[System.Boolean]",
"SyncGroupName": "System.String",
@@ -15283,7 +15693,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15307,7 +15717,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15375,7 +15785,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15399,7 +15809,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15474,7 +15884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupEnabled": "System.Nullable`1[System.Boolean]",
"SyncGroupName": "System.String",
@@ -15599,7 +16009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -15753,7 +16163,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15984,7 +16394,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16054,7 +16464,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncGroup, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SyncGroupName": "System.String",
"StorageSyncServiceName": "System.String",
@@ -16218,7 +16628,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16412,7 +16822,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16580,7 +16990,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16674,7 +17084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupEnabled": "System.Nullable`1[System.Boolean]",
"SyncGroupName": "System.String",
@@ -16832,7 +17242,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16850,7 +17260,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16868,7 +17278,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16925,7 +17335,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackupEnabled": "System.Nullable`1[System.Boolean]",
"SyncGroupName": "System.String",
@@ -16997,7 +17407,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17021,7 +17431,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17045,7 +17455,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17137,7 +17547,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17161,7 +17571,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17185,7 +17595,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17351,7 +17761,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17375,7 +17785,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17399,7 +17809,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17467,7 +17877,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17491,7 +17901,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17515,7 +17925,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17582,7 +17992,7 @@
"Name": "Invoke-AzStorageSyncCompatibilityCheck",
"ClassName": "Microsoft.Azure.Commands.StorageSync.Evaluation.Cmdlets.InvokeCompatibilityCheckCmdlet",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "PathBased",
"OutputTypes": [
@@ -17590,7 +18000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Evaluation.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Evaluation.Models.PSStorageSyncValidation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Evaluation.Models.PSStorageSyncValidation, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Evaluation.Models.PSStorageSyncValidation, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17659,7 +18069,7 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17695,7 +18105,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17713,7 +18123,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17761,7 +18171,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17785,7 +18195,7 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17809,7 +18219,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17838,7 +18248,7 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17862,7 +18272,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17915,7 +18325,7 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17939,7 +18349,7 @@
"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",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18129,7 +18539,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.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.StorageSync.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18141,7 +18551,7 @@
"Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.StorageSync.Models.PSPrivateLinkServiceConnectionState",
@@ -18190,7 +18600,7 @@
"Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpoint": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceId": "System.String"
},
@@ -18234,7 +18644,7 @@
"Microsoft.Azure.Commands.StorageSync.Models.PSPrivateLinkServiceConnectionState": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSPrivateLinkServiceConnectionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.String",
"Description": "System.String",
@@ -18316,6 +18726,8 @@
"Properties": {
"OnPremise": "System.Boolean",
"VersionProfiles": "System.Collections.Generic.IList`1[System.String]",
+ "Name": "System.String",
+ "AdTenant": "System.String",
"AzureDataLakeStoreFileSystemEndpointSuffix": "System.String",
"AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String",
"BatchEndpointResourceId": "System.String",
@@ -18325,7 +18737,6 @@
"AzureKeyVaultDnsSuffix": "System.String",
"TrafficManagerDnsSuffix": "System.String",
"SqlDatabaseDnsSuffix": "System.String",
- "StorageEndpointSuffix": "System.String",
"ActiveDirectoryServiceEndpointResourceId": "System.String",
"GraphUrl": "System.String",
"GalleryUrl": "System.String",
@@ -18334,8 +18745,8 @@
"ManagementPortalUrl": "System.String",
"ResourceManagerUrl": "System.String",
"ServiceManagementUrl": "System.String",
- "AdTenant": "System.String",
- "Name": "System.String"
+ "StorageEndpointSuffix": "System.String",
+ "ContainerRegistryEndpointSuffix": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18469,7 +18880,7 @@
"Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSServerEndpointHealth, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UploadActivity": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncActivityStatus",
"DownloadActivity": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncActivityStatus",
@@ -18522,7 +18933,7 @@
"Microsoft.Azure.Commands.StorageSync.Models.PSSyncActivityStatus": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncActivityStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncActivityStatus, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncActivityStatus, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Timestamp": "System.Nullable`1[System.DateTime]",
"PerItemErrorCount": "System.Nullable`1[System.Int64]",
@@ -18605,7 +19016,7 @@
"Microsoft.Azure.Commands.StorageSync.Models.PSSyncSessionStatus": {
"Namespace": "Microsoft.Azure.Commands.StorageSync.Models",
"Name": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncSessionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncSessionStatus, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.StorageSync.Models.PSSyncSessionStatus, Microsoft.Azure.PowerShell.Cmdlets.StorageSync, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastSyncTimestamp": "System.Nullable`1[System.DateTime]",
"LastSyncSuccessTimestamp": "System.Nullable`1[System.DateTime]",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll.json
index ab0cb36e2ea9..33394e26d3f6 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll.json
@@ -89,7 +89,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -469,7 +469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -785,7 +785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -1390,7 +1390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -1738,7 +1738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -2194,7 +2194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoleAssignmentId": "System.String",
"RoleDefinitionId": "System.String",
@@ -2272,7 +2272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -3061,7 +3061,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -3233,7 +3233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -3405,7 +3405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -3577,7 +3577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -3722,7 +3722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -3942,7 +3942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseRole",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseRole, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseRole, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsBuiltIn": "System.Boolean",
"Name": "System.String",
@@ -4020,7 +4020,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -4350,7 +4350,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -4495,7 +4495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -4691,7 +4691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRoleAssignmentDetails, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoleAssignmentId": "System.String",
"RoleDefinitionId": "System.String",
@@ -4769,7 +4769,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -5562,7 +5562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -5758,7 +5758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -5954,7 +5954,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -6150,7 +6150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -6455,7 +6455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -7520,7 +7520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -7713,7 +7713,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -7933,7 +7933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -8153,7 +8153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -8373,7 +8373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -8689,7 +8689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlow",
"WorkspaceName": "System.String",
@@ -8779,7 +8779,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -9003,7 +9003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -9264,7 +9264,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -9355,7 +9355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlow",
"WorkspaceName": "System.String",
@@ -9685,7 +9685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -9904,7 +9904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlow",
"WorkspaceName": "System.String",
@@ -10220,7 +10220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlowResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSDataFlow",
"WorkspaceName": "System.String",
@@ -10310,7 +10310,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -10622,7 +10622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -10948,7 +10948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSDataset",
"WorkspaceName": "System.String",
@@ -11038,7 +11038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -11262,7 +11262,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -11523,7 +11523,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -11614,7 +11614,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSDataset",
"WorkspaceName": "System.String",
@@ -11944,7 +11944,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -12163,7 +12163,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSDataset",
"WorkspaceName": "System.String",
@@ -12479,7 +12479,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSDatasetResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSDataset",
"WorkspaceName": "System.String",
@@ -12569,7 +12569,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -12881,7 +12881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -13207,7 +13207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedService",
"WorkspaceName": "System.String",
@@ -13297,7 +13297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -13521,7 +13521,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -13782,7 +13782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -13873,7 +13873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedService",
"WorkspaceName": "System.String",
@@ -14203,7 +14203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -14422,7 +14422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedService",
"WorkspaceName": "System.String",
@@ -14738,7 +14738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedServiceResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSLinkedService",
"WorkspaceName": "System.String",
@@ -14828,7 +14828,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -15140,7 +15140,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -15503,7 +15503,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -15594,7 +15594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook",
"WorkspaceName": "System.String",
@@ -15882,7 +15882,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -16077,7 +16077,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook",
"WorkspaceName": "System.String",
@@ -16345,7 +16345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook",
"WorkspaceName": "System.String",
@@ -16435,7 +16435,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -16659,7 +16659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -16920,7 +16920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -17011,7 +17011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook",
"WorkspaceName": "System.String",
@@ -17341,7 +17341,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -17560,7 +17560,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook",
"WorkspaceName": "System.String",
@@ -17876,7 +17876,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSNotebookResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSNotebook",
"WorkspaceName": "System.String",
@@ -17966,7 +17966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -18556,7 +18556,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -18753,7 +18753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -19156,7 +19156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSActivityRunsQueryResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSActivityRunsQueryResponse, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSActivityRunsQueryResponse, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Synapse.Models.PSActivityRun]",
"ContinuationToken": "System.String"
@@ -19233,7 +19233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -19663,7 +19663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -20123,7 +20123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InvokedBy": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRunInvokedBy",
"Values": "System.Collections.Generic.IEnumerable`1[System.Object]",
@@ -20217,7 +20217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -20631,7 +20631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -20776,7 +20776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -21020,7 +21020,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSCreateRunResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSCreateRunResponse, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSCreateRunResponse, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RunId": "System.String"
},
@@ -21088,7 +21088,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder",
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]",
@@ -21190,7 +21190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -21426,7 +21426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder",
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]",
@@ -21940,7 +21940,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -22461,7 +22461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -22550,7 +22550,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InvokedBy": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRunInvokedBy",
"Values": "System.Collections.Generic.IEnumerable`1[System.Object]",
@@ -22840,7 +22840,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -23033,7 +23033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InvokedBy": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineRunInvokedBy",
"Values": "System.Collections.Generic.IEnumerable`1[System.Object]",
@@ -23305,7 +23305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder",
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]",
@@ -23408,7 +23408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -23632,7 +23632,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -23893,7 +23893,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -23984,7 +23984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder",
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]",
@@ -24327,7 +24327,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -24688,7 +24688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder",
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]",
@@ -24927,7 +24927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Folder": "Microsoft.Azure.Commands.Synapse.Models.PSPipelineFolder",
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Synapse.Models.PSParameterSpecification]",
@@ -25030,7 +25030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -25342,7 +25342,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -25668,7 +25668,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.Nullable`1[Azure.Analytics.Synapse.Artifacts.Models.EventSubscriptionStatus]",
"TriggerName": "System.String"
@@ -25745,7 +25745,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -25836,7 +25836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -26082,7 +26082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -26253,7 +26253,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -26473,7 +26473,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -26563,7 +26563,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -26787,7 +26787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -27011,7 +27011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Values": "System.Collections.Generic.IEnumerable`1[System.Object]",
"Keys": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -27096,7 +27096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -27404,7 +27404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -27724,7 +27724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerSubscriptionOperationStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.Nullable`1[Azure.Analytics.Synapse.Artifacts.Models.EventSubscriptionStatus]",
"TriggerName": "System.String"
@@ -27801,7 +27801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -27892,7 +27892,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -28096,7 +28096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -28243,7 +28243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -28452,7 +28452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -28543,7 +28543,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -28873,7 +28873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -29092,7 +29092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -29445,7 +29445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -29536,7 +29536,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -29866,7 +29866,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -30085,7 +30085,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -30401,7 +30401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -30491,7 +30491,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -30803,7 +30803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -31166,7 +31166,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -31257,7 +31257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -31545,7 +31545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -31740,7 +31740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -32045,7 +32045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -32136,7 +32136,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -32424,7 +32424,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -32619,7 +32619,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSTriggerResource, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Synapse.Models.PSTrigger",
"WorkspaceName": "System.String",
@@ -32887,7 +32887,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -32999,7 +32999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -33333,7 +33333,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -33636,7 +33636,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -33709,7 +33709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -34045,7 +34045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -34242,7 +34242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -34540,7 +34540,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -34652,7 +34652,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -35260,7 +35260,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -35718,7 +35718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -35791,7 +35791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -36127,7 +36127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -36324,7 +36324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkJob, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivyBatchStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -36622,7 +36622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -36749,7 +36749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -37083,7 +37083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -37406,7 +37406,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -37479,7 +37479,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -37836,7 +37836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -38007,7 +38007,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -38294,7 +38294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -38385,7 +38385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -38671,7 +38671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -39552,7 +39552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -39625,7 +39625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -39982,7 +39982,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
"AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
@@ -40153,7 +40153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -40440,7 +40440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkStatement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkStatement, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkStatement, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Synapse.Models.PSLivyStatementOutput",
"Id": "System.Nullable`1[System.Int32]",
@@ -40537,7 +40537,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -40846,7 +40846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -41087,7 +41087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseExtendedSparkStatement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseExtendedSparkStatement, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseExtendedSparkStatement, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "Microsoft.Azure.Commands.Synapse.Models.PSLivyStatementOutput",
"Id": "System.Nullable`1[System.Int32]",
@@ -41211,7 +41211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -41902,7 +41902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -42170,7 +42170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -42560,7 +42560,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -42953,7 +42953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkSession, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LivyInfo": "Microsoft.Azure.Commands.Synapse.Models.PSLivySessionStateInformation",
"Scheduler": "Microsoft.Azure.Commands.Synapse.Models.PSSchedulerInformation",
@@ -43254,9 +43254,9 @@
},
{
"VerbName": "Get",
- "NounName": "AzSynapseFirewallRule",
- "Name": "Get-AzSynapseFirewallRule",
- "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseFirewallRule",
+ "NounName": "AzSynapseSqlAuditSetting",
+ "Name": "Get-AzSynapseSqlAuditSetting",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseSqlAudit",
"SupportsShouldProcess": false,
"ConfirmImpact": 0,
"SupportsPaging": false,
@@ -43265,12 +43265,17 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAuditModel",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "EndIpAddress": "System.String",
- "ProvisioningState": "System.String",
- "StartIpAddress": "System.String"
+ "AuditActionGroup": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "BlobStorageTargetState": "Microsoft.Azure.Commands.Synapse.Models.AuditStateType",
+ "StorageKeyType": "Microsoft.Azure.Commands.Synapse.Models.StorageKeyKind",
+ "RetentionInDays": "System.Nullable`1[System.UInt32]",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "PredicateExpression": "System.String",
+ "StorageAccountResourceId": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43305,12 +43310,7 @@
{
"Name": "",
"ReturnType": null,
- "Parameters": [
- {
- "Name": "ipFirewallRuleInfo",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
+ "Parameters": []
}
]
},
@@ -43357,12 +43357,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "WorkspaceObject",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -43428,10 +43428,8 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Name",
- "AliasList": [
- "FirewallRuleName"
- ],
+ "Name": "ResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -43533,32 +43531,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "FirewallRuleName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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",
@@ -43601,16 +43573,16 @@
]
},
{
- "Name": "GetByParentObjectParameterSet",
+ "Name": "GetByInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "WorkspaceObject",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -43682,10 +43654,52 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "DefaultProfile",
"AliasList": [
- "FirewallRuleName"
+ "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": "GetByResourceIdParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -43701,7 +43715,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -43792,27 +43806,36 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Get-AzSynapseSqlAudit"
+ ]
},
{
- "VerbName": "New",
- "NounName": "AzSynapseFirewallRule",
- "Name": "New-AzSynapseFirewallRule",
- "ClassName": "Microsoft.Azure.Commands.Synapse.NewAzureSynapseFirewallRule",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
+ "VerbName": "Get",
+ "NounName": "AzSynapseSqlPoolAuditSetting",
+ "Name": "Get-AzSynapseSqlPoolAuditSetting",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseSqlPoolAudit",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
- "DefaultParameterSetName": "CreateByNameParameterSet",
+ "DefaultParameterSetName": "GetByNameParameterSet",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolAuditModel",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "EndIpAddress": "System.String",
- "ProvisioningState": "System.String",
- "StartIpAddress": "System.String"
+ "AuditActionGroup": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "BlobStorageTargetState": "Microsoft.Azure.Commands.Synapse.Models.AuditStateType",
+ "StorageKeyType": "Microsoft.Azure.Commands.Synapse.Models.StorageKeyKind",
+ "RetentionInDays": "System.Nullable`1[System.UInt32]",
+ "SqlPoolName": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "PredicateExpression": "System.String",
+ "StorageAccountResourceId": "System.String",
+ "AuditAction": "System.String[]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43847,12 +43870,7 @@
{
"Name": "",
"ReturnType": null,
- "Parameters": [
- {
- "Name": "ipFirewallRuleInfo",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
+ "Parameters": []
}
]
},
@@ -43898,13 +43916,31 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "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": "WorkspaceObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -43970,45 +44006,79 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Name",
- "AliasList": [
- "FirewallRuleName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "StartIpAddress",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "sqlPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "EndIpAddress",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -44025,42 +44095,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "AllowAllAzureIP",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -44097,7 +44131,7 @@
],
"ParameterSets": [
{
- "Name": "CreateByNameParameterSet",
+ "Name": "GetByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -44150,56 +44184,6 @@
{
"ParameterMetadata": {
"Name": "Name",
- "AliasList": [
- "FirewallRuleName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
- {
- "ParameterMetadata": {
- "Name": "StartIpAddress",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
- {
- "ParameterMetadata": {
- "Name": "EndIpAddress",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -44221,30 +44205,6 @@
"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.4.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",
@@ -44287,35 +44247,11 @@
]
},
{
- "Name": "CreateByNameAllowAllIpParameterSet",
+ "Name": "GetByParentObjectParameterSet",
"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": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "WorkspaceName",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -44337,98 +44273,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "AllowAllAzureIP",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "CreateByParentObjectParameterSet",
- "Parameters": [
{
"ParameterMetadata": {
"Name": "WorkspaceObject",
@@ -44436,7 +44280,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -44506,104 +44350,6 @@
"ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "FirewallRuleName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
- {
- "ParameterMetadata": {
- "Name": "StartIpAddress",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
- {
- "ParameterMetadata": {
- "Name": "EndIpAddress",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": 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.4.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",
@@ -44646,27 +44392,28 @@
]
},
{
- "Name": "CreateByParentObjectAllowAllIpParameterSet",
+ "Name": "GetByInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "WorkspaceObject",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
"Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
"ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
"TagsTable": "System.String",
"Location": "System.String",
"Id": "System.String",
@@ -44708,7 +44455,7 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "workspace",
+ "Name": "sqlPool",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -44727,16 +44474,31 @@
},
{
"ParameterMetadata": {
- "Name": "AllowAllAzureIP",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -44744,19 +44506,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -44766,9 +44533,9 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -44817,30 +44584,6 @@
{
"Name": "__AllParameterSets",
"Parameters": [
- {
- "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.4.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",
@@ -44883,69 +44626,30 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Get-AzSynapseSqlPoolAudit"
+ ]
},
{
- "VerbName": "Update",
- "NounName": "AzSynapseFirewallRule",
- "Name": "Update-AzSynapseFirewallRule",
- "ClassName": "Microsoft.Azure.Commands.Synapse.UpdateAzureSynapseFirewallRules",
+ "VerbName": "Reset",
+ "NounName": "AzSynapseSqlAuditSetting",
+ "Name": "Reset-AzSynapseSqlAuditSetting",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.RemoveAzureSynapseSqlAudit",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "UpdateByNameParameterSet",
+ "DefaultParameterSetName": "RemoveByNameParameterSet",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndIpAddress": "System.String",
- "ProvisioningState": "System.String",
- "StartIpAddress": "System.String"
- },
+ "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": [
- {
- "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": "ipFirewallRuleInfo",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -44990,12 +44694,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "WorkspaceObject",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -45061,27 +44765,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Name",
- "AliasList": [
- "FirewallRuleName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "StartIpAddress",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -45099,12 +44783,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "EndIpAddress",
+ "Name": "AsJob",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45114,10 +44798,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "AsJob",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -45170,7 +44854,7 @@
],
"ParameterSets": [
{
- "Name": "UpdateByNameParameterSet",
+ "Name": "RemoveByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -45222,14 +44906,12 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "FirewallRuleName"
- ],
+ "Name": "AsJob",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45239,64 +44921,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "StartIpAddress",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "EndIpAddress",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "AsJob",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -45360,16 +44994,16 @@
]
},
{
- "Name": "UpdateByParentObjectParameterSet",
+ "Name": "RemoveByInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "WorkspaceObject",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -45441,14 +45075,12 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "FirewallRuleName"
- ],
+ "Name": "AsJob",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45458,21 +45090,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "StartIpAddress",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45482,7 +45114,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -45491,7 +45123,51 @@
},
{
"ParameterMetadata": {
- "Name": "EndIpAddress",
+ "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": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -45508,7 +45184,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -45537,6 +45213,30 @@
"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.4.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",
@@ -45605,6 +45305,30 @@
"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.4.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",
@@ -45647,80 +45371,30 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Remove-AzSynapseSqlAudit"
+ ]
},
{
- "VerbName": "Get",
- "NounName": "AzSynapseIntegrationRuntime",
- "Name": "Get-AzSynapseIntegrationRuntime",
- "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseIntegrationRuntime",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
+ "VerbName": "Reset",
+ "NounName": "AzSynapseSqlPoolAuditSetting",
+ "Name": "Reset-AzSynapseSqlPoolAuditSetting",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.RemoveAzureSynapseSqlPoolAudit",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "GetByNameParameterSet",
+ "DefaultParameterSetName": "RemoveByNameParameterSet",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "System.String"
- },
+ "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": [
- {
- "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": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -45766,9 +45440,7 @@
},
{
"Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -45790,7 +45462,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -45855,38 +45527,30 @@
"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": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
"Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "System.String"
+ "Type": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45923,15 +45587,7 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
+ "Name": "sqlPool",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -45944,7 +45600,43 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Status",
+ "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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -45997,7 +45689,7 @@
],
"ParameterSets": [
{
- "Name": "GetByNameParameterSet",
+ "Name": "RemoveByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -46050,9 +45742,7 @@
{
"ParameterMetadata": {
"Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -46068,6 +45758,30 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -46075,7 +45789,7 @@
},
{
"ParameterMetadata": {
- "Name": "Status",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -46139,14 +45853,12 @@
]
},
{
- "Name": "GetByParentObjectParameterSet",
+ "Name": "RemoveByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
"Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -46162,7 +45874,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -46174,7 +45886,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -46246,7 +45958,7 @@
},
{
"ParameterMetadata": {
- "Name": "Status",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -46270,75 +45982,7 @@
},
{
"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": "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": false
- },
- {
- "ParameterMetadata": {
- "Name": "Status",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -46402,7 +46046,7 @@
]
},
{
- "Name": "GetByInputObjectParameterSet",
+ "Name": "RemoveByInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -46410,15 +46054,25 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
"Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "System.String"
+ "Type": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46455,15 +46109,7 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
+ "Name": "sqlPool",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -46482,7 +46128,31 @@
},
{
"ParameterMetadata": {
- "Name": "Status",
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -46546,11 +46216,151 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "RemoveByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Status",
+ "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": 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.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -46614,26 +46424,34 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Remove-AzSynapseSqlPoolAudit"
+ ]
},
{
- "VerbName": "Get",
- "NounName": "AzSynapseIntegrationRuntimeKey",
- "Name": "Get-AzSynapseIntegrationRuntimeKey",
- "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseIntegrationRuntimeKey",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
+ "VerbName": "Set",
+ "NounName": "AzSynapseSqlAuditSetting",
+ "Name": "Set-AzSynapseSqlAuditSetting",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.SetAzureSynapseSqlAudit",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "GetByNameParameterSet",
+ "DefaultParameterSetName": "SetByNameParameterSet",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAuditModel",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.WorkspaceAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AuthKey1": "System.String",
- "AuthKey2": "System.String"
+ "AuditActionGroup": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "BlobStorageTargetState": "Microsoft.Azure.Commands.Synapse.Models.AuditStateType",
+ "StorageKeyType": "Microsoft.Azure.Commands.Synapse.Models.StorageKeyKind",
+ "RetentionInDays": "System.Nullable`1[System.UInt32]",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "PredicateExpression": "System.String",
+ "StorageAccountResourceId": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46668,16 +46486,7 @@
{
"Name": "",
"ReturnType": null,
- "Parameters": [
- {
- "Name": "key1",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "key2",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
+ "Parameters": []
}
]
},
@@ -46724,32 +46533,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "WorkspaceObject",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -46833,69 +46622,151 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
+ "Name": "AuditActionGroup",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "System.String"
- },
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PredicateExpression",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "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"
- }
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "BlobStorageTargetState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Enabled",
+ "Disabled"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "StorageAccountResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "StorageKeyType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Primary",
+ "Secondary"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RetentionInDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.UInt32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, 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.UInt32"
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -46938,7 +46809,7 @@
],
"ParameterSets": [
{
- "Name": "GetByNameParameterSet",
+ "Name": "SetByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -46990,16 +46861,14 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
+ "Name": "AuditActionGroup",
+ "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.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": null,
+ "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -47007,40 +46876,25 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "PredicateExpression",
+ "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": [],
@@ -47052,18 +46906,11 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "GetByParentObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
+ "Name": "BlobStorageTargetState",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -47074,123 +46921,61 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "Enabled",
+ "Disabled"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "WorkspaceObject",
+ "Name": "StorageAccountResourceId",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "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": [
- {
- "Name": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "StorageKeyType",
+ "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": [],
+ "ValidateSet": [
+ "Primary",
+ "Secondary"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -47199,23 +46984,20 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "GetByResourceIdParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "RetentionInDays",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[System.UInt32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, 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": [],
+ "GenericTypeArguments": [
+ "System.UInt32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -47224,23 +47006,71 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "AsJob",
+ "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",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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]",
@@ -47271,7 +47101,7 @@
]
},
{
- "Name": "GetByInputObjectParameterSet",
+ "Name": "SetByInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -47279,15 +47109,24 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
"Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "System.String"
+ "Type": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47324,15 +47163,7 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
+ "Name": "workspace",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -47351,31 +47182,16 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "AuditActionGroup",
+ "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]"
- },
- "ElementType": null,
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup",
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -47387,39 +47203,19 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "PredicateExpression",
+ "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": [],
@@ -47431,350 +47227,10 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Get",
- "NounName": "AzSynapseIntegrationRuntimeMetric",
- "Name": "Get-AzSynapseIntegrationRuntimeMetric",
- "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseIntegrationRuntimeMetric",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
- "SupportsPaging": false,
- "DefaultParameterSetName": "GetByNameParameterSet",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeMetrics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.IntegrationRuntimeNodeMonitoringData]",
- "IntegrationRuntimeName": "System.String",
- "ResourceGroupName": "System.String",
- "DataFactoryName": "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": "data",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "factoryName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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": "WorkspaceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "WorkspaceObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "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": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "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": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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": "GetByNameParameterSet",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "BlobStorageTargetState",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -47786,7 +47242,10 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "Enabled",
+ "Disabled"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
@@ -47798,7 +47257,7 @@
},
{
"ParameterMetadata": {
- "Name": "WorkspaceName",
+ "Name": "StorageAccountResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -47815,17 +47274,15 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
+ "Name": "StorageKeyType",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -47836,70 +47293,53 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "Primary",
+ "Secondary"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "RetentionInDays",
+ "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.Nullable`1[System.UInt32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.UInt32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "GetByParentObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
+ "Name": "AsJob",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47909,88 +47349,35 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "WorkspaceObject",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String"
- },
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [
- {
- "Name": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
@@ -48035,7 +47422,7 @@
]
},
{
- "Name": "GetByResourceIdParameterSet",
+ "Name": "SetByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -48063,31 +47450,168 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "Name": "AuditActionGroup",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PredicateExpression",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "BlobStorageTargetState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Enabled",
+ "Disabled"
],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageAccountResourceId",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageKeyType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Primary",
+ "Secondary"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionInDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.UInt32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, 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.UInt32"
],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -48099,86 +47623,29 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "GetByInputObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "System.String"
- },
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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": [
- {
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
@@ -48227,31 +47694,16 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "AuditActionGroup",
+ "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]"
- },
- "ElementType": null,
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup",
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -48263,126 +47715,255 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Get",
- "NounName": "AzSynapseIntegrationRuntimeNode",
- "Name": "Get-AzSynapseIntegrationRuntimeNode",
- "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseIntegrationRuntimeNode",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
- "SupportsPaging": false,
- "DefaultParameterSetName": "GetByNameParameterSet",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIntegrationRuntimeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.ManagedIntegrationRuntimeError]",
- "ResourceGroupName": "System.String",
- "DataFactoryName": "System.String",
- "IntegrationRuntimeName": "System.String",
- "Name": "System.String",
- "NodeId": "System.String",
- "Status": "System.String"
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ {
+ "ParameterMetadata": {
+ "Name": "PredicateExpression",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "BlobStorageTargetState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Enabled",
+ "Disabled"
],
- "ReturnType": "System.Boolean"
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageAccountResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "integrationRuntimeName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "name",
- "Type": "System.Reflection.RuntimeParameterInfo"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageKeyType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Primary",
+ "Secondary"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionInDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.UInt32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, 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.UInt32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "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.4.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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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]"
},
- {
- "Name": "node",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
+ "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": [
+ "Set-AzSynapseSqlAudit"
+ ]
+ },
+ {
+ "VerbName": "Set",
+ "NounName": "AzSynapseSqlPoolAuditSetting",
+ "Name": "Set-AzSynapseSqlPoolAuditSetting",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.SetAzureSynapseSqlPoolAudit",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "SetByNameParameterSet",
+ "OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolAuditModel",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.SqlPoolAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "IsActiveDispatcher": "System.Nullable`1[System.Boolean]",
- "RegisterTime": "System.Nullable`1[System.DateTime]",
- "LastEndUpdateTime": "System.Nullable`1[System.DateTime]",
- "LastStartUpdateTime": "System.Nullable`1[System.DateTime]",
- "LastStopTime": "System.Nullable`1[System.DateTime]",
- "LastStartTime": "System.Nullable`1[System.DateTime]",
- "ExpiryTime": "System.Nullable`1[System.DateTime]",
- "LastConnectTime": "System.Nullable`1[System.DateTime]",
- "ConcurrentJobsLimit": "System.Nullable`1[System.Int32]",
- "MaxConcurrentJobs": "System.Nullable`1[System.Int32]",
- "LastUpdateResult": "System.String",
+ "AuditActionGroup": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "BlobStorageTargetState": "Microsoft.Azure.Commands.Synapse.Models.AuditStateType",
+ "StorageKeyType": "Microsoft.Azure.Commands.Synapse.Models.StorageKeyKind",
+ "RetentionInDays": "System.Nullable`1[System.UInt32]",
+ "SqlPoolName": "System.String",
"ResourceGroupName": "System.String",
- "VersionStatus": "System.String",
- "Status": "System.String",
- "HostServiceUri": "System.String",
- "MachineName": "System.String",
- "Name": "System.String",
- "IntegrationRuntimeName": "System.String",
- "DataFactoryName": "System.String",
- "Version": "System.String",
- "IpAddress": "System.String"
+ "WorkspaceName": "System.String",
+ "PredicateExpression": "System.String",
+ "StorageAccountResourceId": "System.String",
+ "AuditAction": "System.String[]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48417,32 +47998,7 @@
{
"Name": "",
"ReturnType": null,
- "Parameters": [
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "integrationRuntimeName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "name",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "node",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "ipAddress",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
+ "Parameters": []
}
]
},
@@ -48489,7 +48045,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "IntegrationRuntimeName",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -48512,7 +48068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -48577,38 +48133,30 @@
"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": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
"Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "System.String"
+ "Type": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48645,15 +48193,7 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
+ "Name": "sqlPool",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -48666,7 +48206,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Name",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -48684,7 +48224,159 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "IpAddress",
+ "Name": "AuditActionGroup",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AuditAction",
+ "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": false
+ },
+ {
+ "Name": "PredicateExpression",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "BlobStorageTargetState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Enabled",
+ "Disabled"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "StorageAccountResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "StorageKeyType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Primary",
+ "Secondary"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RetentionInDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.UInt32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, 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.UInt32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -48737,7 +48429,7 @@
],
"ParameterSets": [
{
- "Name": "GetByNameParameterSet",
+ "Name": "SetByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -48789,7 +48481,7 @@
},
{
"ParameterMetadata": {
- "Name": "IntegrationRuntimeName",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -48813,14 +48505,14 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "AuditActionGroup",
"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.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
- "ElementType": null,
+ "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -48828,23 +48520,23 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IpAddress",
+ "Name": "AuditAction",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -48861,31 +48553,16 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "PredicateExpression",
+ "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": [],
@@ -48897,15 +48574,10 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "GetByParentObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "IntegrationRuntimeName",
+ "Name": "BlobStorageTargetState",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -48917,96 +48589,46 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "Enabled",
+ "Disabled"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "WorkspaceObject",
+ "Name": "StorageAccountResourceId",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "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": [
- {
- "Name": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "StorageKeyType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -49018,19 +48640,72 @@
"Methods": [],
"Constructors": []
},
+ "ValidateSet": [
+ "Primary",
+ "Secondary"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionInDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.UInt32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, 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.UInt32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IpAddress",
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -49094,11 +48769,11 @@
]
},
{
- "Name": "GetByResourceIdParameterSet",
+ "Name": "SetByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -49122,7 +48797,183 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AuditActionGroup",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AuditAction",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PredicateExpression",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "BlobStorageTargetState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Enabled",
+ "Disabled"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageAccountResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -49139,14 +48990,91 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IpAddress",
+ "Name": "StorageKeyType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Primary",
+ "Secondary"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionInDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.UInt32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, 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.UInt32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "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.4.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": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -49210,7 +49138,7 @@
]
},
{
- "Name": "GetByInputObjectParameterSet",
+ "Name": "SetByInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -49218,15 +49146,25 @@
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
"Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "System.String"
+ "Type": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -49263,15 +49201,7 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
+ "Name": "sqlPool",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -49290,14 +49220,38 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "AuditActionGroup",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AuditAction",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, 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,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -49305,21 +49259,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IpAddress",
+ "Name": "PredicateExpression",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -49338,51 +49292,58 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "Name": "BlobStorageTargetState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Enabled",
+ "Disabled"
],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageAccountResourceId",
+ "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": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "StorageKeyType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -49394,19 +49355,72 @@
"Methods": [],
"Constructors": []
},
+ "ValidateSet": [
+ "Primary",
+ "Secondary"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionInDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.UInt32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, 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.UInt32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IpAddress",
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -49468,293 +49482,13 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Invoke",
- "NounName": "AzSynapseIntegrationRuntimeUpgrade",
- "Name": "Invoke-AzSynapseIntegrationRuntimeUpgrade",
- "ClassName": "Microsoft.Azure.Commands.Synapse.InvokeAzureSynapseIntegrationRuntimeUpgrade",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "InvokeByNameParameterSet",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System",
- "Name": "System.Void",
- "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "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": "WorkspaceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "WorkspaceObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "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": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "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": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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": "InvokeByNameParameterSet",
+ "Name": "SetByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -49771,6 +49505,30 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AuditActionGroup",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -49778,7 +49536,31 @@
},
{
"ParameterMetadata": {
- "Name": "WorkspaceName",
+ "Name": "AuditAction",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PredicateExpression",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -49793,19 +49575,17 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
+ "Name": "BlobStorageTargetState",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -49816,66 +49596,47 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "Enabled",
+ "Disabled"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "StorageAccountResourceId",
+ "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": "InvokeByParentObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
+ "Name": "StorageKeyType",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -49886,120 +49647,57 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "Primary",
+ "Secondary"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "WorkspaceObject",
+ "Name": "RetentionInDays",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String"
- },
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.UInt32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, 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": [],
- "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"
- }
+ "GenericTypeArguments": [
+ "System.UInt32"
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "AsJob",
+ "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.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -50011,20 +49709,15 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "InvokeByResourceIdParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50034,9 +49727,9 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -50083,111 +49776,196 @@
]
},
{
- "Name": "InvokeByInputObjectParameterSet",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "AuditActionGroup",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "System.String"
- },
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Synapse.Models.AuditActionGroup",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AuditAction",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PredicateExpression",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "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": [
- {
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "Name": "BlobStorageTargetState",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Enabled",
+ "Disabled"
],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageAccountResourceId",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageKeyType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Primary",
+ "Secondary"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionInDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.UInt32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, 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.UInt32"
],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -50199,12 +49977,31 @@
"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.4.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",
@@ -50247,26 +50044,29 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Set-AzSynapseSqlPoolAudit"
+ ]
},
{
- "VerbName": "New",
- "NounName": "AzSynapseIntegrationRuntimeKey",
- "Name": "New-AzSynapseIntegrationRuntimeKey",
- "ClassName": "Microsoft.Azure.Commands.Synapse.NewAzureSynapseIntegrationRuntimeKey",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
+ "VerbName": "Get",
+ "NounName": "AzSynapseFirewallRule",
+ "Name": "Get-AzSynapseFirewallRule",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseFirewallRule",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
- "DefaultParameterSetName": "NewByNameParameterSet",
+ "DefaultParameterSetName": "GetByNameParameterSet",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AuthKey1": "System.String",
- "AuthKey2": "System.String"
+ "EndIpAddress": "System.String",
+ "ProvisioningState": "System.String",
+ "StartIpAddress": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -50303,11 +50103,7 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "key1",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "key2",
+ "Name": "ipFirewallRuleInfo",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -50356,33 +50152,13 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "WorkspaceObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -50448,8 +50224,10 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "ResourceId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "FirewallRuleName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -50465,115 +50243,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "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": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "KeyName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "AuthKey1",
- "AuthKey2"
- ],
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -50610,7 +50279,7 @@
],
"ParameterSets": [
{
- "Name": "NewByNameParameterSet",
+ "Name": "GetByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -50664,7 +50333,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "IntegrationRuntimeName"
+ "FirewallRuleName"
],
"Type": {
"Namespace": "System",
@@ -50681,57 +50350,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "KeyName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "AuthKey1",
- "AuthKey2"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -50779,34 +50397,8 @@
]
},
{
- "Name": "NewByParentObjectParameterSet",
+ "Name": "GetByParentObjectParameterSet",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
{
"ParameterMetadata": {
"Name": "WorkspaceObject",
@@ -50814,7 +50406,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -50886,8 +50478,10 @@
},
{
"ParameterMetadata": {
- "Name": "KeyName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "FirewallRuleName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -50898,31 +50492,43 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "AuthKey1",
- "AuthKey2"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -50934,7 +50540,12 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -50975,13 +50586,318 @@
"ValueFromPipelineByPropertyName": false
}
]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzSynapseFirewallRule",
+ "Name": "New-AzSynapseFirewallRule",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.NewAzureSynapseFirewallRule",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndIpAddress": "System.String",
+ "ProvisioningState": "System.String",
+ "StartIpAddress": "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": "ipFirewallRuleInfo",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "NewByResourceIdParameterSet",
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "FirewallRuleName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "StartIpAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "EndIpAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AllowAllAzureIP",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "CreateByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -50998,14 +50914,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyName",
+ "Name": "WorkspaceName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -51017,10 +50933,7 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "AuthKey1",
- "AuthKey2"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
@@ -51032,12 +50945,14 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "FirewallRuleName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -51047,136 +50962,40 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"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": "NewByInputObjectParameterSet",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "StartIpAddress",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "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": [
- {
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "KeyName",
+ "Name": "EndIpAddress",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -51188,10 +51007,7 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "AuthKey1",
- "AuthKey2"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
@@ -51203,7 +51019,7 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -51267,11 +51083,11 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "CreateByNameAllowAllIpParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "KeyName",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -51283,27 +51099,24 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "AuthKey1",
- "AuthKey2"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "WorkspaceName",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -51313,9 +51126,57 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AllowAllAzureIP",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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
@@ -51360,312 +51221,93 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzSynapseIntegrationRuntime",
- "Name": "Remove-AzSynapseIntegrationRuntime",
- "ClassName": "Microsoft.Azure.Commands.Synapse.RemoveAzureSynapseIntegrationRuntime",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "RemoveByNameParameterSet",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System",
- "Name": "System.Void",
- "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "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": "WorkspaceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "WorkspaceObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "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": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "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": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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.4.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": "RemoveByNameParameterSet",
+ "Name": "CreateByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "WorkspaceObject",
"AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FirewallRuleName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -51681,14 +51323,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "WorkspaceName",
+ "Name": "StartIpAddress",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -51712,10 +51354,8 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
+ "Name": "EndIpAddress",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -51738,7 +51378,7 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -51802,34 +51442,8 @@
]
},
{
- "Name": "RemoveByParentObjectParameterSet",
+ "Name": "CreateByParentObjectAllowAllIpParameterSet",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
{
"ParameterMetadata": {
"Name": "WorkspaceObject",
@@ -51837,7 +51451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -51909,7 +51523,31 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "AllowAllAzureIP",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -51973,16 +51611,16 @@
]
},
{
- "Name": "RemoveByResourceIdParameterSet",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "AsJob",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51992,245 +51630,9 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "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.4.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": "RemoveByInputObjectParameterSet",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "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": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "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.4.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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -52280,25 +51682,66 @@
"AliasList": []
},
{
- "VerbName": "Remove",
- "NounName": "AzSynapseIntegrationRuntimeNode",
- "Name": "Remove-AzSynapseIntegrationRuntimeNode",
- "ClassName": "Microsoft.Azure.Commands.Synapse.RemoveAzureSynapseIntegrationRuntimeNode",
+ "VerbName": "Update",
+ "NounName": "AzSynapseFirewallRule",
+ "Name": "Update-AzSynapseFirewallRule",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.UpdateAzureSynapseFirewallRules",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "RemoveByNameParameterSet",
+ "DefaultParameterSetName": "UpdateByNameParameterSet",
"OutputTypes": [
{
"Type": {
- "Namespace": "System",
- "Name": "System.Void",
- "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseIpFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndIpAddress": "System.String",
+ "ProvisioningState": "System.String",
+ "StartIpAddress": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "ipFirewallRuleInfo",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -52342,31 +51785,13 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "IntegrationRuntimeName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "WorkspaceObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -52432,8 +51857,10 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "ResourceId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "FirewallRuleName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -52450,77 +51877,25 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
+ "Name": "StartIpAddress",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "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": [
- {
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "NodeName",
+ "Name": "EndIpAddress",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -52538,7 +51913,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Force",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -52591,7 +51966,7 @@
],
"ParameterSets": [
{
- "Name": "RemoveByNameParameterSet",
+ "Name": "UpdateByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -52643,8 +52018,10 @@
},
{
"ParameterMetadata": {
- "Name": "IntegrationRuntimeName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "FirewallRuleName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -52667,7 +52044,7 @@
},
{
"ParameterMetadata": {
- "Name": "NodeName",
+ "Name": "StartIpAddress",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -52684,14 +52061,38 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "EndIpAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -52755,32 +52156,8 @@
]
},
{
- "Name": "RemoveByParentObjectParameterSet",
+ "Name": "UpdateByParentObjectParameterSet",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "IntegrationRuntimeName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
{
"ParameterMetadata": {
"Name": "WorkspaceObject",
@@ -52788,7 +52165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -52860,8 +52237,10 @@
},
{
"ParameterMetadata": {
- "Name": "NodeName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "FirewallRuleName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -52879,12 +52258,60 @@
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "StartIpAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "EndIpAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -52948,319 +52375,11 @@
]
},
{
- "Name": "RemoveByResourceIdParameterSet",
+ "Name": "__AllParameterSets",
"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": false
- },
- {
- "ParameterMetadata": {
- "Name": "NodeName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": 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.4.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": "RemoveByInputObjectParameterSet",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "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": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NodeName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": 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.4.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": "NodeName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Force",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -53327,20 +52446,20 @@
"AliasList": []
},
{
- "VerbName": "Set",
+ "VerbName": "Get",
"NounName": "AzSynapseIntegrationRuntime",
- "Name": "Set-AzSynapseIntegrationRuntime",
- "ClassName": "Microsoft.Azure.Commands.Synapse.SetAzureSynapseIntegrationRuntime",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
+ "Name": "Get-AzSynapseIntegrationRuntime",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseIntegrationRuntime",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
- "DefaultParameterSetName": "SetByIntegrationRuntimeName",
+ "DefaultParameterSetName": "GetByNameParameterSet",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -53467,7 +52586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -53556,7 +52675,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -53621,161 +52740,12 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Type",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Managed",
- "SelfHosted"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Description",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "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": "NodeSize",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "NodeCount",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "CatalogServerEndpoint",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "CatalogAdminCredential",
+ "Name": "Status",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "CatalogPricingTier",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "VNetId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -53788,346 +52758,42 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Subnet",
+ "Name": "DefaultProfile",
"AliasList": [
- "SubnetName"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
- },
+ }
+ ],
+ "ParameterSets": [
{
- "Name": "PublicIP",
- "AliasList": [
- "PublicIPs"
- ],
- "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": false
- },
- {
- "Name": "DataFlowComputeType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "DataFlowCoreCount",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DataFlowTimeToLive",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "SetupScriptContainerSasUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Edition",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Standard",
- "Enterprise"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ExpressCustomSetup",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.ArrayList",
- "AssemblyQualifiedName": "System.Collections.ArrayList, 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": "DataProxyIntegrationRuntimeName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "DataProxyStagingLinkedServiceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "DataProxyStagingPath",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "MaxParallelExecutionsPerNode",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "LicenseType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "LicenseIncluded",
- "BasePrice"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AuthKey",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, 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": "SharedIntegrationRuntimeResourceId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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.4.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": "SetByIntegrationRuntimeName",
+ "Name": "GetByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -54198,19 +52864,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "Status",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -54220,7 +52886,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -54229,8 +52895,54 @@
},
{
"ParameterMetadata": {
- "Name": "NodeSize",
- "AliasList": [],
+ "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": "GetByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -54253,38 +52965,89 @@
},
{
"ParameterMetadata": {
- "Name": "NodeCount",
+ "Name": "WorkspaceObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String"
+ },
"ElementType": null,
- "GenericTypeArguments": [
- "System.Int32"
+ "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"
+ }
],
- "Methods": [],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CatalogServerEndpoint",
+ "Name": "Status",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -54294,7 +53057,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -54303,16 +53066,31 @@
},
{
"ParameterMetadata": {
- "Name": "CatalogAdminCredential",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -54324,10 +53102,15 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "CatalogPricingTier",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -54344,19 +53127,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "VNetId",
+ "Name": "Status",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -54375,120 +53158,31 @@
},
{
"ParameterMetadata": {
- "Name": "Subnet",
+ "Name": "DefaultProfile",
"AliasList": [
- "SubnetName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "PublicIP",
- "AliasList": [
- "PublicIPs"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DataFlowComputeType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DataFlowCoreCount",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DataFlowTimeToLive",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -54500,215 +53194,96 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SetupScriptContainerSasUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Edition",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Standard",
- "Enterprise"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ExpressCustomSetup",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.ArrayList",
- "AssemblyQualifiedName": "System.Collections.ArrayList, 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": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DataProxyIntegrationRuntimeName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "DataProxyStagingLinkedServiceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetByInputObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "DataProxyStagingPath",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "MaxParallelExecutionsPerNode",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ "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"
+ }
],
- "Methods": [],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "LicenseType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "LicenseIncluded",
- "BasePrice"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AuthKey",
+ "Name": "Status",
"AliasList": [],
"Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -54727,58 +53302,51 @@
},
{
"ParameterMetadata": {
- "Name": "Type",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Managed",
- "SelfHosted"
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Description",
- "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "Status",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -54840,87 +53408,337 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzSynapseIntegrationRuntimeKey",
+ "Name": "Get-AzSynapseIntegrationRuntimeKey",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseIntegrationRuntimeKey",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "GetByNameParameterSet",
+ "OutputTypes": [
{
- "Name": "SetByLinkedIntegrationRuntimeName",
- "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": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthKey1": "System.String",
+ "AuthKey2": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "WorkspaceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
+ "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": "key1",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "key2",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "IntegrationRuntimeName"
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
],
- "Type": {
- "Namespace": "System",
- "Name": "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
+ "ReturnType": "System.Boolean"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "GetByNameParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "SharedIntegrationRuntimeResourceId",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -54937,14 +53755,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Type",
+ "Name": "WorkspaceName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -54956,23 +53774,22 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "Managed",
- "SelfHosted"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Description",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -54988,31 +53805,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -55059,7 +53852,7 @@
]
},
{
- "Name": "SetByParentObject",
+ "Name": "GetByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -55094,7 +53887,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -55166,66 +53959,31 @@
},
{
"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": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NodeSize",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NodeCount",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -55237,10 +53995,15 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "CatalogServerEndpoint",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -55257,23 +54020,38 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CatalogAdminCredential",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -55285,43 +54063,115 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetByInputObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "CatalogPricingTier",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "VNetId",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -55333,21 +54183,39 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Subnet",
+ "Name": "DefaultProfile",
"AliasList": [
- "SubnetName"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -55359,36 +54227,350 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzSynapseIntegrationRuntimeMetric",
+ "Name": "Get-AzSynapseIntegrationRuntimeMetric",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseIntegrationRuntimeMetric",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "GetByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeMetrics",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.IntegrationRuntimeNodeMonitoringData]",
+ "IntegrationRuntimeName": "System.String",
+ "ResourceGroupName": "System.String",
+ "DataFactoryName": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "PublicIP",
- "AliasList": [
- "PublicIPs"
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
],
- "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": false
+ "ReturnType": "System.Boolean"
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "data",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "factoryName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "GetByNameParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "DataFlowComputeType",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -55412,351 +54594,50 @@
},
{
"ParameterMetadata": {
- "Name": "DataFlowCoreCount",
+ "Name": "WorkspaceName",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DataFlowTimeToLive",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SetupScriptContainerSasUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Edition",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Standard",
- "Enterprise"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ExpressCustomSetup",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.ArrayList",
- "AssemblyQualifiedName": "System.Collections.ArrayList, 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": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DataProxyIntegrationRuntimeName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "DataProxyStagingLinkedServiceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "DataProxyStagingPath",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "MaxParallelExecutionsPerNode",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "LicenseType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "LicenseIncluded",
- "BasePrice"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AuthKey",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, 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": "Type",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Managed",
- "SelfHosted"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Description",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Force",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -55803,7 +54684,7 @@
]
},
{
- "Name": "SetByLinkedIntegrationRuntimeParentObject",
+ "Name": "GetByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -55838,7 +54719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -55910,31 +54791,51 @@
},
{
"ParameterMetadata": {
- "Name": "SharedIntegrationRuntimeResourceId",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Type",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -55946,65 +54847,134 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "Managed",
- "SelfHosted"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Description",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetByInputObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
@@ -56049,59 +55019,525 @@
]
},
{
- "Name": "SetByResourceId",
+ "Name": "__AllParameterSets",
"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": false
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzSynapseIntegrationRuntimeNode",
+ "Name": "Get-AzSynapseIntegrationRuntimeNode",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseIntegrationRuntimeNode",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "GetByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIntegrationRuntimeNode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.ManagedIntegrationRuntimeError]",
+ "ResourceGroupName": "System.String",
+ "DataFactoryName": "System.String",
+ "IntegrationRuntimeName": "System.String",
+ "Name": "System.String",
+ "NodeId": "System.String",
+ "Status": "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": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "integrationRuntimeName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "node",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ },
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeNode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "IsActiveDispatcher": "System.Nullable`1[System.Boolean]",
+ "RegisterTime": "System.Nullable`1[System.DateTime]",
+ "LastEndUpdateTime": "System.Nullable`1[System.DateTime]",
+ "LastStartUpdateTime": "System.Nullable`1[System.DateTime]",
+ "LastStopTime": "System.Nullable`1[System.DateTime]",
+ "LastStartTime": "System.Nullable`1[System.DateTime]",
+ "ExpiryTime": "System.Nullable`1[System.DateTime]",
+ "LastConnectTime": "System.Nullable`1[System.DateTime]",
+ "ConcurrentJobsLimit": "System.Nullable`1[System.Int32]",
+ "MaxConcurrentJobs": "System.Nullable`1[System.Int32]",
+ "LastUpdateResult": "System.String",
+ "ResourceGroupName": "System.String",
+ "VersionStatus": "System.String",
+ "Status": "System.String",
+ "HostServiceUri": "System.String",
+ "MachineName": "System.String",
+ "Name": "System.String",
+ "IntegrationRuntimeName": "System.String",
+ "DataFactoryName": "System.String",
+ "Version": "System.String",
+ "IpAddress": "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": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "integrationRuntimeName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "node",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "ipAddress",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "IntegrationRuntimeName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "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": "IpAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "GetByNameParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "NodeSize",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -56125,33 +55561,31 @@
},
{
"ParameterMetadata": {
- "Name": "NodeCount",
+ "Name": "WorkspaceName",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CatalogServerEndpoint",
+ "Name": "IntegrationRuntimeName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -56168,19 +55602,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CatalogAdminCredential",
+ "Name": "Name",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.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": [],
@@ -56190,45 +55624,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CatalogPricingTier",
+ "Name": "IpAddress",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "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": "VNetId",
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56247,44 +55657,31 @@
},
{
"ParameterMetadata": {
- "Name": "Subnet",
+ "Name": "DefaultProfile",
"AliasList": [
- "SubnetName"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PublicIP",
- "AliasList": [
- "PublicIPs"
- ],
- "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -56296,10 +55693,15 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetByParentObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "DataFlowComputeType",
+ "Name": "IntegrationRuntimeName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -56316,66 +55718,91 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DataFlowCoreCount",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DataFlowTimeToLive",
+ "Name": "WorkspaceObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String"
+ },
"ElementType": null,
- "GenericTypeArguments": [
- "System.Int32"
+ "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"
+ }
],
- "Methods": [],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SetupScriptContainerSasUri",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -56392,46 +55819,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Edition",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Standard",
- "Enterprise"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ExpressCustomSetup",
+ "Name": "IpAddress",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.ArrayList",
- "AssemblyQualifiedName": "System.Collections.ArrayList, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56441,7 +55841,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -56450,31 +55850,51 @@
},
{
"ParameterMetadata": {
- "Name": "DataProxyIntegrationRuntimeName",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "DataProxyStagingLinkedServiceName",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -56491,14 +55911,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DataProxyStagingPath",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -56515,24 +55935,22 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "MaxParallelExecutionsPerNode",
+ "Name": "IpAddress",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], 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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Int32"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
@@ -56548,43 +55966,31 @@
},
{
"ParameterMetadata": {
- "Name": "LicenseType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "LicenseIncluded",
- "BasePrice"
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AuthKey",
- "AliasList": [],
"Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -56596,37 +56002,91 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetByInputObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Type",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
- "ValidateSet": [
- "Managed",
- "SelfHosted"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Description",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -56643,14 +56103,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "IpAddress",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -56714,35 +56174,11 @@
]
},
{
- "Name": "SetByLinkedIntegrationRuntimeResourceId",
+ "Name": "__AllParameterSets",
"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": false
- },
- {
- "ParameterMetadata": {
- "Name": "SharedIntegrationRuntimeResourceId",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -56766,58 +56202,7 @@
},
{
"ParameterMetadata": {
- "Name": "Type",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Managed",
- "SelfHosted"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Description",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Force",
+ "Name": "IpAddress",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -56879,89 +56264,317 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
- {
- "Name": "SetByIntegrationRuntimeObject",
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Invoke",
+ "NounName": "AzSynapseIntegrationRuntimeUpgrade",
+ "Name": "Invoke-AzSynapseIntegrationRuntimeUpgrade",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.InvokeAzureSynapseIntegrationRuntimeUpgrade",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "InvokeByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Void",
+ "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "InvokeByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String",
- "WorkspaceName": "System.String",
- "Description": "System.String",
- "Id": "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": [
- {
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "WorkspaceName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -56978,15 +56591,17 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NodeSize",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -57002,25 +56617,38 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NodeCount",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": {},
+ "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": [
- "System.Int32"
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
],
- "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -57032,11 +56660,18 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "InvokeByParentObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "CatalogServerEndpoint",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -57052,465 +56687,135 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CatalogAdminCredential",
+ "Name": "WorkspaceObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "CatalogPricingTier",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "VNetId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Subnet",
- "AliasList": [
- "SubnetName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "PublicIP",
- "AliasList": [
- "PublicIPs"
- ],
- "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": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DataFlowComputeType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "DataFlowCoreCount",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DataFlowTimeToLive",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SetupScriptContainerSasUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Edition",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Standard",
- "Enterprise"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ExpressCustomSetup",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.ArrayList",
- "AssemblyQualifiedName": "System.Collections.ArrayList, 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": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DataProxyIntegrationRuntimeName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "DataProxyStagingLinkedServiceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "DataProxyStagingPath",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "MaxParallelExecutionsPerNode",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "LicenseType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "LicenseIncluded",
- "BasePrice"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AuthKey",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, 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": "Type",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Managed",
- "SelfHosted"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "InvokeByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Description",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -57527,31 +56832,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -57598,7 +56879,7 @@
]
},
{
- "Name": "SetByLinkedIntegrationRuntimeObject",
+ "Name": "InvokeByInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -57607,7 +56888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -57678,249 +56959,75 @@
},
{
"ParameterMetadata": {
- "Name": "SharedIntegrationRuntimeResourceId",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Type",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "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": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Managed",
- "SelfHosted"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Description",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Force",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Type",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Managed",
- "SelfHosted"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Description",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Force",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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"
- }
- ],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -57939,25 +57046,69 @@
"AliasList": []
},
{
- "VerbName": "Sync",
- "NounName": "AzSynapseIntegrationRuntimeCredential",
- "Name": "Sync-AzSynapseIntegrationRuntimeCredential",
- "ClassName": "Microsoft.Azure.Commands.Synapse.SyncAzureSynapseIntegrationRuntimeCredential",
+ "VerbName": "New",
+ "NounName": "AzSynapseIntegrationRuntimeKey",
+ "Name": "New-AzSynapseIntegrationRuntimeKey",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.NewAzureSynapseIntegrationRuntimeKey",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "StopByNameParameterSet",
+ "DefaultParameterSetName": "NewByNameParameterSet",
"OutputTypes": [
{
"Type": {
- "Namespace": "System",
- "Name": "System.Void",
- "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthKey1": "System.String",
+ "AuthKey2": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "key1",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "key2",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -58002,8 +57153,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "IntegrationRuntimeName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -58025,7 +57178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -58114,7 +57267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -58178,6 +57331,27 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "KeyName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "AuthKey1",
+ "AuthKey2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
{
"Name": "Force",
"AliasList": [],
@@ -58232,7 +57406,7 @@
],
"ParameterSets": [
{
- "Name": "StopByNameParameterSet",
+ "Name": "NewByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -58284,8 +57458,10 @@
},
{
"ParameterMetadata": {
- "Name": "IntegrationRuntimeName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -58306,6 +57482,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "KeyName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "AuthKey1",
+ "AuthKey2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Force",
@@ -58372,12 +57575,14 @@
]
},
{
- "Name": "StopByParentObjectParameterSet",
+ "Name": "NewByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "IntegrationRuntimeName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -58405,7 +57610,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -58475,6 +57680,33 @@
"ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "KeyName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "AuthKey1",
+ "AuthKey2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Force",
@@ -58541,7 +57773,7 @@
]
},
{
- "Name": "StopByResourceIdParameterSet",
+ "Name": "NewByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -58567,6 +57799,33 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "KeyName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "AuthKey1",
+ "AuthKey2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Force",
@@ -58633,7 +57892,7 @@
]
},
{
- "Name": "StopByInputObjectParameterSet",
+ "Name": "NewByInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -58642,7 +57901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -58711,6 +57970,33 @@
"ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "KeyName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "AuthKey1",
+ "AuthKey2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Force",
@@ -58779,6 +58065,33 @@
{
"Name": "__AllParameterSets",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "KeyName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "AuthKey1",
+ "AuthKey2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Force",
@@ -58848,102 +58161,25 @@
"AliasList": []
},
{
- "VerbName": "Update",
+ "VerbName": "Remove",
"NounName": "AzSynapseIntegrationRuntime",
- "Name": "Update-AzSynapseIntegrationRuntime",
- "ClassName": "Microsoft.Azure.Commands.Synapse.UpdateAzureSynapseIntegrationRuntime",
+ "Name": "Remove-AzSynapseIntegrationRuntime",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.RemoveAzureSynapseIntegrationRuntime",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "UpdateByNameParameterSet",
+ "DefaultParameterSetName": "RemoveByNameParameterSet",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Links": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.LinkedIntegrationRuntime]",
- "Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.SelfHostedIntegrationRuntimeNode]",
- "ServiceUrls": "System.Collections.Generic.IList`1[System.String]",
- "CreateTime": "System.Nullable`1[System.DateTime]",
- "ScheduledUpdateDate": "System.Nullable`1[System.DateTime]",
- "AutoUpdateETA": "System.Nullable`1[System.DateTime]",
- "UpdateDelayOffset": "System.Nullable`1[System.TimeSpan]",
- "LocalTimeZoneOffset": "System.Nullable`1[System.TimeSpan]",
- "WorkspaceName": "System.String",
- "ResourceGroupName": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "VersionStatus": "System.String",
- "TaskQueueId": "System.String",
- "State": "System.String",
- "LatestVersion": "System.String",
- "Description": "System.String",
- "InternalChannelEncryption": "System.String",
- "AutoUpdate": "System.String",
- "Version": "System.String",
- "PushedVersion": "System.String",
- "Id": "System.String"
- },
+ "Namespace": "System",
+ "Name": "System.Void",
+ "AssemblyQualifiedName": "System.Void, 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": [
- {
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "status",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "deserializerSettings",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -58988,8 +58224,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "IntegrationRuntimeName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -59011,7 +58249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -59100,7 +58338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -59165,41 +58403,18 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "AutoUpdate",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "On",
- "Off"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AutoUpdateDelayOffset",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
- ],
- "Methods": [],
- "Constructors": []
- },
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
@@ -59241,7 +58456,7 @@
],
"ParameterSets": [
{
- "Name": "UpdateByNameParameterSet",
+ "Name": "RemoveByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -59293,8 +58508,10 @@
},
{
"ParameterMetadata": {
- "Name": "IntegrationRuntimeName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -59317,47 +58534,18 @@
},
{
"ParameterMetadata": {
- "Name": "AutoUpdate",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "On",
- "Off"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AutoUpdateDelayOffset",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
- ],
- "Methods": [],
- "Constructors": []
- },
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
@@ -59410,12 +58598,14 @@
]
},
{
- "Name": "UpdateByParentObjectParameterSet",
+ "Name": "RemoveByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "IntegrationRuntimeName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -59443,7 +58633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -59515,47 +58705,18 @@
},
{
"ParameterMetadata": {
- "Name": "AutoUpdate",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "On",
- "Off"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AutoUpdateDelayOffset",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
- ],
- "Methods": [],
- "Constructors": []
- },
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
@@ -59608,7 +58769,7 @@
]
},
{
- "Name": "UpdateByResourceIdParameterSet",
+ "Name": "RemoveByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -59636,47 +58797,18 @@
},
{
"ParameterMetadata": {
- "Name": "AutoUpdate",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "On",
- "Off"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AutoUpdateDelayOffset",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
- ],
- "Methods": [],
- "Constructors": []
- },
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
@@ -59729,7 +58861,7 @@
]
},
{
- "Name": "UpdateByInputObjectParameterSet",
+ "Name": "RemoveByInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -59738,7 +58870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -59809,47 +58941,18 @@
},
{
"ParameterMetadata": {
- "Name": "AutoUpdate",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "On",
- "Off"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AutoUpdateDelayOffset",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
- ],
- "Methods": [],
- "Constructors": []
- },
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
@@ -59906,47 +59009,18 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "AutoUpdate",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "On",
- "Off"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AutoUpdateDelayOffset",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.TimeSpan]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
- ],
- "Methods": [],
- "Constructors": []
- },
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
@@ -60002,102 +59076,25 @@
"AliasList": []
},
{
- "VerbName": "Update",
+ "VerbName": "Remove",
"NounName": "AzSynapseIntegrationRuntimeNode",
- "Name": "Update-AzSynapseIntegrationRuntimeNode",
- "ClassName": "Microsoft.Azure.Commands.Synapse.UpdateAzureSynapseIntegrationRuntimeNode",
+ "Name": "Remove-AzSynapseIntegrationRuntimeNode",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.RemoveAzureSynapseIntegrationRuntimeNode",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "UpdateByNameParameterSet",
+ "DefaultParameterSetName": "RemoveByNameParameterSet",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Links": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.LinkedIntegrationRuntime]",
- "Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.SelfHostedIntegrationRuntimeNode]",
- "ServiceUrls": "System.Collections.Generic.IList`1[System.String]",
- "CreateTime": "System.Nullable`1[System.DateTime]",
- "ScheduledUpdateDate": "System.Nullable`1[System.DateTime]",
- "AutoUpdateETA": "System.Nullable`1[System.DateTime]",
- "UpdateDelayOffset": "System.Nullable`1[System.TimeSpan]",
- "LocalTimeZoneOffset": "System.Nullable`1[System.TimeSpan]",
- "WorkspaceName": "System.String",
- "ResourceGroupName": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "VersionStatus": "System.String",
- "TaskQueueId": "System.String",
- "State": "System.String",
- "LatestVersion": "System.String",
- "Description": "System.String",
- "InternalChannelEncryption": "System.String",
- "AutoUpdate": "System.String",
- "Version": "System.String",
- "PushedVersion": "System.String",
- "Id": "System.String"
- },
+ "Namespace": "System",
+ "Name": "System.Void",
+ "AssemblyQualifiedName": "System.Void, 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": [
- {
- "Name": "integrationRuntime",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "status",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "resourceGroupName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "workspaceName",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "deserializerSettings",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -60165,7 +59162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -60254,7 +59251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -60319,7 +59316,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Name",
+ "Name": "NodeName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -60337,12 +59334,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ConcurrentJobsLimit",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60390,7 +59387,7 @@
],
"ParameterSets": [
{
- "Name": "UpdateByNameParameterSet",
+ "Name": "RemoveByNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -60466,7 +59463,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "NodeName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -60485,17 +59482,17 @@
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ConcurrentJobsLimit",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60507,7 +59504,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -60554,7 +59551,7 @@
]
},
{
- "Name": "UpdateByParentObjectParameterSet",
+ "Name": "RemoveByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -60587,7 +59584,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -60659,7 +59656,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "NodeName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -60678,17 +59675,17 @@
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ConcurrentJobsLimit",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60700,7 +59697,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -60747,7 +59744,7 @@
]
},
{
- "Name": "UpdateByResourceIdParameterSet",
+ "Name": "RemoveByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -60775,7 +59772,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "NodeName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -60794,17 +59791,17 @@
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ConcurrentJobsLimit",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60816,7 +59813,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -60863,7 +59860,7 @@
]
},
{
- "Name": "UpdateByInputObjectParameterSet",
+ "Name": "RemoveByInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -60872,7 +59869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -60943,7 +59940,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "NodeName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -60962,17 +59959,17 @@
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ConcurrentJobsLimit",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60984,7 +59981,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -61035,7 +60032,7 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "NodeName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -61054,17 +60051,17 @@
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ConcurrentJobsLimit",
+ "Name": "Force",
"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.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61076,7 +60073,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -61126,38 +60123,27 @@
"AliasList": []
},
{
- "VerbName": "Get",
- "NounName": "AzSynapseSparkPool",
- "Name": "Get-AzSynapseSparkPool",
- "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseSparkPool",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
+ "VerbName": "Set",
+ "NounName": "AzSynapseIntegrationRuntime",
+ "Name": "Set-AzSynapseIntegrationRuntime",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.SetAzureSynapseIntegrationRuntime",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "GetByNameParameterSet",
+ "DefaultParameterSetName": "SetByIntegrationRuntimeName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
- "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
- "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
- "Tags": "System.Collections.Hashtable",
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "NodeCount": "System.Nullable`1[System.Int32]",
- "ProvisioningState": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "TagsTable": "System.String",
- "DefaultSparkLogFolder": "System.String",
- "NodeSize": "System.String",
"Name": "System.String",
- "SparkVersion": "System.String",
- "SparkEventsFolder": "System.String",
- "NodeSizeFamily": "System.String",
- "Type": "System.String"
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61194,7 +60180,15 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "sparkPool",
+ "Name": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -61246,7 +60240,7 @@
{
"Name": "Name",
"AliasList": [
- "SparkPoolName"
+ "IntegrationRuntimeName"
],
"Type": {
"Namespace": "System",
@@ -61269,7 +60263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Synapse.Models",
"Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
"Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
@@ -61353,504 +60347,172 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "InputObject",
+ "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",
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.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]"
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
{
- "Name": "Clear",
+ "Name": "ToString",
"Parameters": [],
- "ReturnType": "System.Void"
+ "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": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
+ },
{
- "Name": "GetByNameParameterSet",
- "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": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "WorkspaceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": false
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SparkPoolName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Type",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Managed",
+ "SelfHosted"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "GetByParentObjectParameterSet",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SparkPoolName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "WorkspaceObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "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": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "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": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": 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": "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": "__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": "New",
- "NounName": "AzSynapseSparkPool",
- "Name": "New-AzSynapseSparkPool",
- "ClassName": "Microsoft.Azure.Commands.Synapse.NewAzureSynapseSparkPool",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "CreateByNameAndEnableAutoScaleParameterSet",
- "OutputTypes": [
- {
+ "Name": "NodeSize",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
- "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
- "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
- "Tags": "System.Collections.Hashtable",
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "NodeCount": "System.Nullable`1[System.Int32]",
- "ProvisioningState": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "TagsTable": "System.String",
- "DefaultSparkLogFolder": "System.String",
- "NodeSize": "System.String",
- "Name": "System.String",
- "SparkVersion": "System.String",
- "SparkEventsFolder": "System.String",
- "NodeSizeFamily": "System.String",
- "Type": "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"
- }
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "NodeCount",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "sparkPool",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
- "Name": "ResourceGroupName",
+ "Name": "CatalogServerEndpoint",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -61868,7 +60530,25 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "WorkspaceName",
+ "Name": "CatalogAdminCredential",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CatalogPricingTier",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -61886,70 +60566,17 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "WorkspaceObject",
+ "Name": "VNetId",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "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": [
- {
- "Name": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -61957,9 +60584,9 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Name",
+ "Name": "Subnet",
"AliasList": [
- "SparkPoolName"
+ "SubnetName"
],
"Type": {
"Namespace": "System",
@@ -61974,15 +60601,35 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "Tag",
+ "Name": "PublicIP",
+ "AliasList": [
+ "PublicIPs"
+ ],
+ "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": false
+ },
+ {
+ "Name": "DataFlowComputeType",
"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",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61992,28 +60639,68 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DataFlowCoreCount",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "NodeCount",
+ "Name": "DataFlowTimeToLive",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "NodeSize",
+ "Name": "SetupScriptContainerSasUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Edition",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -62026,21 +60713,20 @@
"Constructors": []
},
"ValidateSet": [
- "Small",
- "Medium",
- "Large"
+ "Standard",
+ "Enterprise"
],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "AutoScaleMinNodeCount",
+ "Name": "ExpressCustomSetup",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.ArrayList",
+ "AssemblyQualifiedName": "System.Collections.ArrayList, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62048,17 +60734,17 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
- "ValidateNotNullOrEmpty": false
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "AutoScaleMaxNodeCount",
+ "Name": "DataProxyIntegrationRuntimeName",
"AliasList": [],
"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": [],
@@ -62066,17 +60752,17 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
- "ValidateNotNullOrEmpty": false
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "EnableAutoPause",
+ "Name": "DataProxyStagingLinkedServiceName",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -62086,15 +60772,15 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "AutoPauseDelayInMinute",
+ "Name": "DataProxyStagingPath",
"AliasList": [],
"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": [],
@@ -62102,12 +60788,32 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 5,
- "ValidateRangeMax": 10080,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
{
- "Name": "SparkVersion",
+ "Name": "MaxParallelExecutionsPerNode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "LicenseType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -62119,13 +60825,34 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "LicenseIncluded",
+ "BasePrice"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
{
- "Name": "LibraryRequirementsFilePath",
+ "Name": "AuthKey",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, 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": "SharedIntegrationRuntimeResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -62143,7 +60870,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AsJob",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -62196,7 +60923,7 @@
],
"ParameterSets": [
{
- "Name": "CreateByNameAndEnableAutoScaleParameterSet",
+ "Name": "SetByIntegrationRuntimeName",
"Parameters": [
{
"ParameterMetadata": {
@@ -62248,12 +60975,14 @@
},
{
"ParameterMetadata": {
- "Name": "AutoScaleMinNodeCount",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"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": [],
@@ -62261,10 +60990,10 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
- "ValidateNotNullOrEmpty": false
- },
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -62272,12 +61001,12 @@
},
{
"ParameterMetadata": {
- "Name": "AutoScaleMaxNodeCount",
+ "Name": "Location",
"AliasList": [],
"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": [],
@@ -62285,21 +61014,19 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
- "ValidateNotNullOrEmpty": false
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SparkPoolName"
- ],
+ "Name": "NodeSize",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -62315,22 +61042,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "NodeCount",
"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",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -62346,7 +61075,7 @@
},
{
"ParameterMetadata": {
- "Name": "NodeSize",
+ "Name": "CatalogServerEndpoint",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -62358,28 +61087,24 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "Small",
- "Medium",
- "Large"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnableAutoPause",
+ "Name": "CatalogAdminCredential",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62398,12 +61123,12 @@
},
{
"ParameterMetadata": {
- "Name": "AutoPauseDelayInMinute",
+ "Name": "CatalogPricingTier",
"AliasList": [],
"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": [],
@@ -62411,8 +61136,8 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 5,
- "ValidateRangeMax": 10080,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
"Mandatory": false,
@@ -62422,7 +61147,7 @@
},
{
"ParameterMetadata": {
- "Name": "SparkVersion",
+ "Name": "VNetId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -62437,16 +61162,68 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "LibraryRequirementsFilePath",
+ "Name": "Subnet",
+ "AliasList": [
+ "SubnetName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "PublicIP",
+ "AliasList": [
+ "PublicIPs"
+ ],
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DataFlowComputeType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -62470,15 +61247,17 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "DataFlowCoreCount",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -62494,31 +61273,18 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "DataFlowTimeToLive",
+ "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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -62530,15 +61296,10 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "CreateByNameAndDisableAutoScaleParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "SetupScriptContainerSasUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -62562,7 +61323,7 @@
},
{
"ParameterMetadata": {
- "Name": "WorkspaceName",
+ "Name": "Edition",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -62574,24 +61335,27 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "Standard",
+ "Enterprise"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NodeCount",
+ "Name": "ExpressCustomSetup",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.ArrayList",
+ "AssemblyQualifiedName": "System.Collections.ArrayList, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62599,21 +61363,19 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
- "ValidateNotNullOrEmpty": false
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SparkPoolName"
- ],
+ "Name": "DataProxyIntegrationRuntimeName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -62629,19 +61391,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "DataProxyStagingLinkedServiceName",
"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",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -62651,7 +61413,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -62660,7 +61422,7 @@
},
{
"ParameterMetadata": {
- "Name": "NodeSize",
+ "Name": "DataProxyStagingPath",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -62672,31 +61434,29 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "Small",
- "Medium",
- "Large"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnableAutoPause",
+ "Name": "MaxParallelExecutionsPerNode",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -62712,21 +61472,24 @@
},
{
"ParameterMetadata": {
- "Name": "AutoPauseDelayInMinute",
+ "Name": "LicenseType",
"AliasList": [],
"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": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
- "ValidateRangeMin": 5,
- "ValidateRangeMax": 10080,
+ "ValidateSet": [
+ "LicenseIncluded",
+ "BasePrice"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
"Mandatory": false,
@@ -62736,7 +61499,31 @@
},
{
"ParameterMetadata": {
- "Name": "SparkVersion",
+ "Name": "AuthKey",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, 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": "Type",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -62748,19 +61535,22 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "Managed",
+ "SelfHosted"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "LibraryRequirementsFilePath",
+ "Name": "Description",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -62784,7 +61574,7 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -62848,93 +61638,16 @@
]
},
{
- "Name": "CreateByParentObjectAndEnableAutoScaleParameterSet",
+ "Name": "SetByLinkedIntegrationRuntimeName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "WorkspaceObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "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": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AutoScaleMinNodeCount",
+ "Name": "ResourceGroupName",
"AliasList": [],
"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": [],
@@ -62942,23 +61655,23 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
- "ValidateNotNullOrEmpty": false
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AutoScaleMaxNodeCount",
+ "Name": "WorkspaceName",
"AliasList": [],
"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": [],
@@ -62966,9 +61679,9 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
- "ValidateNotNullOrEmpty": false
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -62979,7 +61692,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SparkPoolName"
+ "IntegrationRuntimeName"
],
"Type": {
"Namespace": "System",
@@ -63003,31 +61716,7 @@
},
{
"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": "NodeSize",
+ "Name": "SharedIntegrationRuntimeResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63039,71 +61728,19 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "Small",
- "Medium",
- "Large"
- ],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "EnableAutoPause",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AutoPauseDelayInMinute",
- "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": 5,
- "ValidateRangeMax": 10080,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SparkVersion",
+ "Name": "Type",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63115,19 +61752,22 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "Managed",
+ "SelfHosted"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "LibraryRequirementsFilePath",
+ "Name": "Description",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63151,7 +61791,7 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -63215,22 +61855,48 @@
]
},
{
- "Name": "CreateByParentObjectAndDisableAutoScaleParameterSet",
+ "Name": "SetByParentObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "WorkspaceObject",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
+ ],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
"Tags": "System.Collections.Hashtable",
"ManagedResourceGroupName": "System.String",
"ProvisioningState": "System.String",
@@ -63296,12 +61962,12 @@
},
{
"ParameterMetadata": {
- "Name": "NodeCount",
+ "Name": "Location",
"AliasList": [],
"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": [],
@@ -63309,21 +61975,19 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
- "ValidateNotNullOrEmpty": false
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SparkPoolName"
- ],
+ "Name": "NodeSize",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -63339,22 +62003,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "NodeCount",
"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",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -63370,7 +62036,7 @@
},
{
"ParameterMetadata": {
- "Name": "NodeSize",
+ "Name": "CatalogServerEndpoint",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63382,28 +62048,24 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "Small",
- "Medium",
- "Large"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnableAutoPause",
+ "Name": "CatalogAdminCredential",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -63422,12 +62084,12 @@
},
{
"ParameterMetadata": {
- "Name": "AutoPauseDelayInMinute",
+ "Name": "CatalogPricingTier",
"AliasList": [],
"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": [],
@@ -63435,8 +62097,8 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 5,
- "ValidateRangeMax": 10080,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
"Mandatory": false,
@@ -63446,7 +62108,7 @@
},
{
"ParameterMetadata": {
- "Name": "SparkVersion",
+ "Name": "VNetId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63461,16 +62123,68 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "LibraryRequirementsFilePath",
+ "Name": "Subnet",
+ "AliasList": [
+ "SubnetName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "PublicIP",
+ "AliasList": [
+ "PublicIPs"
+ ],
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DataFlowComputeType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63494,15 +62208,17 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "DataFlowCoreCount",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -63518,31 +62234,18 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "DataFlowTimeToLive",
+ "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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -63554,18 +62257,11 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SparkPoolName"
- ],
+ "Name": "SetupScriptContainerSasUri",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -63581,19 +62277,46 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "Edition",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Standard",
+ "Enterprise"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExpressCustomSetup",
"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",
+ "Name": "System.Collections.ArrayList",
+ "AssemblyQualifiedName": "System.Collections.ArrayList, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -63603,7 +62326,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -63612,7 +62335,7 @@
},
{
"ParameterMetadata": {
- "Name": "NodeSize",
+ "Name": "DataProxyIntegrationRuntimeName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63624,28 +62347,24 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "Small",
- "Medium",
- "Large"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EnableAutoPause",
+ "Name": "DataProxyStagingLinkedServiceName",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -63655,7 +62374,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -63664,12 +62383,12 @@
},
{
"ParameterMetadata": {
- "Name": "AutoPauseDelayInMinute",
+ "Name": "DataProxyStagingPath",
"AliasList": [],
"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": [],
@@ -63677,8 +62396,8 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 5,
- "ValidateRangeMax": 10080,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
"Mandatory": false,
@@ -63688,7 +62407,33 @@
},
{
"ParameterMetadata": {
- "Name": "SparkVersion",
+ "Name": "MaxParallelExecutionsPerNode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LicenseType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63700,19 +62445,73 @@
"Methods": [],
"Constructors": []
},
+ "ValidateSet": [
+ "LicenseIncluded",
+ "BasePrice"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AuthKey",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, 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": "Type",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Managed",
+ "SelfHosted"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "LibraryRequirementsFilePath",
+ "Name": "Description",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -63736,7 +62535,7 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -63798,401 +62597,117 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzSynapseSparkPool",
- "Name": "Remove-AzSynapseSparkPool",
- "ClassName": "Microsoft.Azure.Commands.Synapse.RemoveAzureSynapseSparkPool",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "DeleteByNameParameterSet",
- "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": "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": "WorkspaceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "SparkPoolName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "WorkspaceObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Name": "SetByLinkedIntegrationRuntimeParentObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "IntegrationRuntimeName"
],
- "ReturnType": "System.Boolean"
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
- "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
- "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
- "Tags": "System.Collections.Hashtable",
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "NodeCount": "System.Nullable`1[System.Int32]",
- "ProvisioningState": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "TagsTable": "System.String",
- "DefaultSparkLogFolder": "System.String",
- "NodeSize": "System.String",
- "Name": "System.String",
- "SparkVersion": "System.String",
- "SparkEventsFolder": "System.String",
- "NodeSizeFamily": "System.String",
- "Type": "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": "sparkPool",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "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.4.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": "DeleteByNameParameterSet",
- "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": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "WorkspaceName",
+ "Name": "WorkspaceObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SparkPoolName"
- ],
+ "Name": "SharedIntegrationRuntimeResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -64215,22 +62730,25 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Type",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
+ "ValidateSet": [
+ "Managed",
+ "SelfHosted"
+ ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -64239,12 +62757,12 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "Description",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -64254,7 +62772,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -64327,14 +62845,12 @@
]
},
{
- "Name": "DeleteByParentObjectParameterSet",
+ "Name": "SetByResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SparkPoolName"
- ],
+ "Name": "ResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -64357,89 +62873,36 @@
},
{
"ParameterMetadata": {
- "Name": "WorkspaceObject",
+ "Name": "Location",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "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": [
- {
- "Name": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "NodeSize",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -64449,7 +62912,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -64458,15 +62921,17 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "NodeCount",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
@@ -64482,12 +62947,12 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "CatalogServerEndpoint",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -64497,7 +62962,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -64506,31 +62971,16 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "CatalogAdminCredential",
+ "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.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -64542,99 +62992,39 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "DeleteByInputObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "CatalogPricingTier",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
- "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
- "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
- "Tags": "System.Collections.Hashtable",
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "NodeCount": "System.Nullable`1[System.Int32]",
- "ProvisioningState": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "TagsTable": "System.String",
- "DefaultSparkLogFolder": "System.String",
- "NodeSize": "System.String",
- "Name": "System.String",
- "SparkVersion": "System.String",
- "SparkEventsFolder": "System.String",
- "NodeSizeFamily": "System.String",
- "Type": "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": [
- {
- "Name": "sparkPool",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "VNetId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -64653,12 +63043,14 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "Subnet",
+ "AliasList": [
+ "SubnetName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -64677,12 +63069,38 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "PublicIP",
+ "AliasList": [
+ "PublicIPs"
+ ],
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DataFlowComputeType",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -64692,6 +63110,32 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DataFlowCoreCount",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -64701,31 +63145,18 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "DataFlowTimeToLive",
+ "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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -64737,15 +63168,10 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "DeleteByResourceIdParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "SetupScriptContainerSasUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -64762,19 +63188,118 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Edition",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Standard",
+ "Enterprise"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExpressCustomSetup",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.ArrayList",
+ "AssemblyQualifiedName": "System.Collections.ArrayList, 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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DataProxyIntegrationRuntimeName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "DataProxyStagingLinkedServiceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "DataProxyStagingPath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64784,6 +63309,32 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MaxParallelExecutionsPerNode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -64793,12 +63344,39 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "LicenseType",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "LicenseIncluded",
+ "BasePrice"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AuthKey",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64815,6 +63393,57 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Type",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Managed",
+ "SelfHosted"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Force",
@@ -64881,16 +63510,16 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "SetByLinkedIntegrationRuntimeResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -64900,7 +63529,58 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SharedIntegrationRuntimeResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Type",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Managed",
+ "SelfHosted"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -64909,12 +63589,12 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "Description",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": [],
@@ -64924,7 +63604,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -64995,203 +63675,89 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Test",
- "NounName": "AzSynapseSparkPool",
- "Name": "Test-AzSynapseSparkPool",
- "ClassName": "Microsoft.Azure.Commands.Synapse.TestAzureSynapseSparkPool",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 0,
- "SupportsPaging": false,
- "DefaultParameterSetName": "TestByNameParameterSet",
- "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": "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": "WorkspaceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "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": "WorkspaceObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "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": "SetByIntegrationRuntimeObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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]"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "TestByNameParameterSet",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -65215,7 +63781,7 @@
},
{
"ParameterMetadata": {
- "Name": "WorkspaceName",
+ "Name": "NodeSize",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -65232,14 +63798,40 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "NodeCount",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CatalogServerEndpoint",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -65256,38 +63848,23 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "CatalogAdminCredential",
+ "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.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -65299,15 +63876,10 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "CatalogPricingTier",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -65324,38 +63896,49 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
+ "Name": "VNetId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Subnet",
"AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "SubnetName"
],
"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": [],
@@ -65367,92 +63950,36 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "TestByParentObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "WorkspaceObject",
- "AliasList": [],
+ "Name": "PublicIP",
+ "AliasList": [
+ "PublicIPs"
+ ],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String"
- },
- "ElementType": null,
+ "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": [
- {
- "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": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "DataFlowComputeType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -65469,38 +63996,25 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "DataFlowCoreCount",
+ "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.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
+ "GenericTypeArguments": [
+ "System.Int32"
],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -65512,375 +64026,748 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Update",
- "NounName": "AzSynapseSparkPool",
- "Name": "Update-AzSynapseSparkPool",
- "ClassName": "Microsoft.Azure.Commands.Synapse.UpdateAzureSynapseSparkPool",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "SetByNameParameterSet",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
- "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
- "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
- "Tags": "System.Collections.Hashtable",
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "NodeCount": "System.Nullable`1[System.Int32]",
- "ProvisioningState": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "TagsTable": "System.String",
- "DefaultSparkLogFolder": "System.String",
- "NodeSize": "System.String",
- "Name": "System.String",
- "SparkVersion": "System.String",
- "SparkEventsFolder": "System.String",
- "NodeSizeFamily": "System.String",
- "Type": "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"
+ {
+ "ParameterMetadata": {
+ "Name": "DataFlowTimeToLive",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "sparkPool",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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": "WorkspaceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "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": "Name",
- "AliasList": [
- "SparkPoolName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "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": "WorkspaceObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
- "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
- "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
- "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
- "Tags": "System.Collections.Hashtable",
- "ManagedResourceGroupName": "System.String",
- "ProvisioningState": "System.String",
- "SqlAdministratorLogin": "System.String",
- "ManagedVirtualNetwork": "System.String",
- "TagsTable": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ {
+ "ParameterMetadata": {
+ "Name": "SetupScriptContainerSasUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Edition",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Standard",
+ "Enterprise"
],
- "ReturnType": "System.Boolean"
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExpressCustomSetup",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.ArrayList",
+ "AssemblyQualifiedName": "System.Collections.ArrayList, 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": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "workspace",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
- "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
- "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
- "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
- "Tags": "System.Collections.Hashtable",
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "NodeCount": "System.Nullable`1[System.Int32]",
- "ProvisioningState": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "TagsTable": "System.String",
- "DefaultSparkLogFolder": "System.String",
- "NodeSize": "System.String",
- "Name": "System.String",
- "SparkVersion": "System.String",
- "SparkEventsFolder": "System.String",
- "NodeSizeFamily": "System.String",
- "Type": "System.String"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ {
+ "ParameterMetadata": {
+ "Name": "DataProxyIntegrationRuntimeName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DataProxyStagingLinkedServiceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "DataProxyStagingPath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "MaxParallelExecutionsPerNode",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, 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.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LicenseType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "LicenseIncluded",
+ "BasePrice"
],
- "ReturnType": "System.Boolean"
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AuthKey",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, 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": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "sparkPool",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "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": "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": "EnableAutoScale",
- "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": false
- },
- {
- "Name": "AutoScaleMinNodeCount",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Type",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Managed",
+ "SelfHosted"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "SetByLinkedIntegrationRuntimeObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SharedIntegrationRuntimeResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Type",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Managed",
+ "SelfHosted"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Type",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Managed",
+ "SelfHosted"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Sync",
+ "NounName": "AzSynapseIntegrationRuntimeCredential",
+ "Name": "Sync-AzSynapseIntegrationRuntimeCredential",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.SyncAzureSynapseIntegrationRuntimeCredential",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "StopByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Void",
+ "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
- "ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
- "ValidateNotNullOrEmpty": false
- },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
{
- "Name": "AutoScaleMaxNodeCount",
+ "Name": "ResourceGroupName",
"AliasList": [],
"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": [],
@@ -65888,37 +64775,35 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
- "ValidateNotNullOrEmpty": false
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "EnableAutoPause",
+ "Name": "WorkspaceName",
"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",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [
- "System.Boolean"
- ],
+ "GenericTypeArguments": [],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "AutoPauseDelayInMinute",
+ "Name": "IntegrationRuntimeName",
"AliasList": [],
"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": [],
@@ -65926,52 +64811,83 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 5,
- "ValidateRangeMax": 10080,
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
{
- "Name": "NodeCount",
+ "Name": "WorkspaceObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
- "ValidateRangeMin": 3,
- "ValidateRangeMax": 200,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "NodeSize",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [
- "Small",
- "Medium",
- "Large"
- ],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "SparkVersion",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -65989,17 +64905,69 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "LibraryRequirementsFilePath",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -66007,7 +64975,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "AsJob",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -66060,8 +65028,17762 @@
],
"ParameterSets": [
{
- "Name": "SetByNameParameterSet",
+ "Name": "StopByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IntegrationRuntimeName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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.4.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": "StopByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "IntegrationRuntimeName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "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.4.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": "StopByResourceIdParameterSet",
+ "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": 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.4.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": "StopByInputObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "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.4.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.4.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": "Update",
+ "NounName": "AzSynapseIntegrationRuntime",
+ "Name": "Update-AzSynapseIntegrationRuntime",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.UpdateAzureSynapseIntegrationRuntime",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "UpdateByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Links": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.LinkedIntegrationRuntime]",
+ "Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.SelfHostedIntegrationRuntimeNode]",
+ "ServiceUrls": "System.Collections.Generic.IList`1[System.String]",
+ "CreateTime": "System.Nullable`1[System.DateTime]",
+ "ScheduledUpdateDate": "System.Nullable`1[System.DateTime]",
+ "AutoUpdateETA": "System.Nullable`1[System.DateTime]",
+ "UpdateDelayOffset": "System.Nullable`1[System.TimeSpan]",
+ "LocalTimeZoneOffset": "System.Nullable`1[System.TimeSpan]",
+ "WorkspaceName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Type": "System.String",
+ "Name": "System.String",
+ "VersionStatus": "System.String",
+ "TaskQueueId": "System.String",
+ "State": "System.String",
+ "LatestVersion": "System.String",
+ "Description": "System.String",
+ "InternalChannelEncryption": "System.String",
+ "AutoUpdate": "System.String",
+ "Version": "System.String",
+ "PushedVersion": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "status",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "deserializerSettings",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "IntegrationRuntimeName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AutoUpdate",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "On",
+ "Off"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AutoUpdateDelayOffset",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
+ ],
+ "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": "UpdateByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IntegrationRuntimeName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoUpdate",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "On",
+ "Off"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoUpdateDelayOffset",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
+ ],
+ "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": "UpdateByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "IntegrationRuntimeName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoUpdate",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "On",
+ "Off"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoUpdateDelayOffset",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
+ ],
+ "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": "UpdateByResourceIdParameterSet",
+ "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoUpdate",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "On",
+ "Off"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoUpdateDelayOffset",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
+ ],
+ "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": "UpdateByInputObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoUpdate",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "On",
+ "Off"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoUpdateDelayOffset",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
+ ],
+ "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": "AutoUpdate",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "On",
+ "Off"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoUpdateDelayOffset",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.TimeSpan]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.TimeSpan, 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.TimeSpan"
+ ],
+ "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": "Update",
+ "NounName": "AzSynapseIntegrationRuntimeNode",
+ "Name": "Update-AzSynapseIntegrationRuntimeNode",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.UpdateAzureSynapseIntegrationRuntimeNode",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "UpdateByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Links": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.LinkedIntegrationRuntime]",
+ "Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Synapse.Models.SelfHostedIntegrationRuntimeNode]",
+ "ServiceUrls": "System.Collections.Generic.IList`1[System.String]",
+ "CreateTime": "System.Nullable`1[System.DateTime]",
+ "ScheduledUpdateDate": "System.Nullable`1[System.DateTime]",
+ "AutoUpdateETA": "System.Nullable`1[System.DateTime]",
+ "UpdateDelayOffset": "System.Nullable`1[System.TimeSpan]",
+ "LocalTimeZoneOffset": "System.Nullable`1[System.TimeSpan]",
+ "WorkspaceName": "System.String",
+ "ResourceGroupName": "System.String",
+ "Type": "System.String",
+ "Name": "System.String",
+ "VersionStatus": "System.String",
+ "TaskQueueId": "System.String",
+ "State": "System.String",
+ "LatestVersion": "System.String",
+ "Description": "System.String",
+ "InternalChannelEncryption": "System.String",
+ "AutoUpdate": "System.String",
+ "Version": "System.String",
+ "PushedVersion": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "status",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "deserializerSettings",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "IntegrationRuntimeName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "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": "ConcurrentJobsLimit",
+ "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": 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": "UpdateByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IntegrationRuntimeName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConcurrentJobsLimit",
+ "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": false
+ },
+ "Mandatory": true,
+ "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": "UpdateByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "IntegrationRuntimeName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConcurrentJobsLimit",
+ "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": false
+ },
+ "Mandatory": true,
+ "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": "UpdateByResourceIdParameterSet",
+ "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": false
+ },
+ {
+ "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConcurrentJobsLimit",
+ "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": false
+ },
+ "Mandatory": true,
+ "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": "UpdateByInputObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String",
+ "WorkspaceName": "System.String",
+ "Description": "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": "integrationRuntime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "workspaceName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConcurrentJobsLimit",
+ "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": false
+ },
+ "Mandatory": true,
+ "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": "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConcurrentJobsLimit",
+ "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": false
+ },
+ "Mandatory": true,
+ "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": "AzSynapseSparkPool",
+ "Name": "Get-AzSynapseSparkPool",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseSparkPool",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "GetByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
+ "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
+ "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
+ "Tags": "System.Collections.Hashtable",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "NodeCount": "System.Nullable`1[System.Int32]",
+ "ProvisioningState": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String",
+ "DefaultSparkLogFolder": "System.String",
+ "NodeSize": "System.String",
+ "Name": "System.String",
+ "SparkVersion": "System.String",
+ "SparkEventsFolder": "System.String",
+ "NodeSizeFamily": "System.String",
+ "Type": "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": "sparkPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "GetByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "GetByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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": "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": 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": "New",
+ "NounName": "AzSynapseSparkPool",
+ "Name": "New-AzSynapseSparkPool",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.NewAzureSynapseSparkPool",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateByNameAndEnableAutoScaleParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
+ "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
+ "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
+ "Tags": "System.Collections.Hashtable",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "NodeCount": "System.Nullable`1[System.Int32]",
+ "ProvisioningState": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String",
+ "DefaultSparkLogFolder": "System.String",
+ "NodeSize": "System.String",
+ "Name": "System.String",
+ "SparkVersion": "System.String",
+ "SparkEventsFolder": "System.String",
+ "NodeSizeFamily": "System.String",
+ "Type": "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": "sparkPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "Name": "NodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AutoScaleMinNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AutoScaleMaxNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableAutoPause",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "CreateByNameAndEnableAutoScaleParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMinNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMaxNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableAutoPause",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "CreateByNameAndDisableAutoScaleParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableAutoPause",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "CreateByParentObjectAndEnableAutoScaleParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMinNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMaxNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableAutoPause",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "CreateByParentObjectAndDisableAutoScaleParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableAutoPause",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableAutoPause",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AzSynapseSparkPool",
+ "Name": "Remove-AzSynapseSparkPool",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.RemoveAzureSynapseSparkPool",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "DeleteByNameParameterSet",
+ "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": "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
+ "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
+ "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
+ "Tags": "System.Collections.Hashtable",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "NodeCount": "System.Nullable`1[System.Int32]",
+ "ProvisioningState": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String",
+ "DefaultSparkLogFolder": "System.String",
+ "NodeSize": "System.String",
+ "Name": "System.String",
+ "SparkVersion": "System.String",
+ "SparkEventsFolder": "System.String",
+ "NodeSizeFamily": "System.String",
+ "Type": "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": "sparkPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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.4.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": "DeleteByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DeleteByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DeleteByInputObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
+ "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
+ "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
+ "Tags": "System.Collections.Hashtable",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "NodeCount": "System.Nullable`1[System.Int32]",
+ "ProvisioningState": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String",
+ "DefaultSparkLogFolder": "System.String",
+ "NodeSize": "System.String",
+ "Name": "System.String",
+ "SparkVersion": "System.String",
+ "SparkEventsFolder": "System.String",
+ "NodeSizeFamily": "System.String",
+ "Type": "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": "sparkPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DeleteByResourceIdParameterSet",
+ "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": 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.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Test",
+ "NounName": "AzSynapseSparkPool",
+ "Name": "Test-AzSynapseSparkPool",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.TestAzureSynapseSparkPool",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "TestByNameParameterSet",
+ "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": "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "TestByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "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": -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": "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": -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": "TestByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "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": -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": "Update",
+ "NounName": "AzSynapseSparkPool",
+ "Name": "Update-AzSynapseSparkPool",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.UpdateAzureSynapseSparkPool",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "SetByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
+ "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
+ "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
+ "Tags": "System.Collections.Hashtable",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "NodeCount": "System.Nullable`1[System.Int32]",
+ "ProvisioningState": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String",
+ "DefaultSparkLogFolder": "System.String",
+ "NodeSize": "System.String",
+ "Name": "System.String",
+ "SparkVersion": "System.String",
+ "SparkEventsFolder": "System.String",
+ "NodeSizeFamily": "System.String",
+ "Type": "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": "sparkPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
+ "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
+ "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
+ "Tags": "System.Collections.Hashtable",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "NodeCount": "System.Nullable`1[System.Int32]",
+ "ProvisioningState": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String",
+ "DefaultSparkLogFolder": "System.String",
+ "NodeSize": "System.String",
+ "Name": "System.String",
+ "SparkVersion": "System.String",
+ "SparkEventsFolder": "System.String",
+ "NodeSizeFamily": "System.String",
+ "Type": "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": "sparkPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "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": "EnableAutoScale",
+ "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": false
+ },
+ {
+ "Name": "AutoScaleMinNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AutoScaleMaxNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableAutoPause",
+ "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": false
+ },
+ {
+ "Name": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "NodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "SetByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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": "EnableAutoScale",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMinNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMaxNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableAutoPause",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "SetByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SparkPoolName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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": "EnableAutoScale",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMinNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMaxNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableAutoPause",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "SetByInputObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSparkPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AutoPause": "Microsoft.Azure.Commands.Synapse.Models.PSAutoPauseProperties",
+ "AutoScale": "Microsoft.Azure.Commands.Synapse.Models.PSAutoScaleProperties",
+ "LibraryRequirements": "Microsoft.Azure.Commands.Synapse.Models.PSLibraryRequirements",
+ "Tags": "System.Collections.Hashtable",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "NodeCount": "System.Nullable`1[System.Int32]",
+ "ProvisioningState": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "TagsTable": "System.String",
+ "DefaultSparkLogFolder": "System.String",
+ "NodeSize": "System.String",
+ "Name": "System.String",
+ "SparkVersion": "System.String",
+ "SparkEventsFolder": "System.String",
+ "NodeSizeFamily": "System.String",
+ "Type": "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": "sparkPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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": "EnableAutoScale",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMinNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMaxNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableAutoPause",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "SetByResourceIdParameterSet",
+ "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": 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": "EnableAutoScale",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMinNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMaxNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableAutoPause",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "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": "EnableAutoScale",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMinNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScaleMaxNodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableAutoPause",
+ "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": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutoPauseDelayInMinute",
+ "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": 5,
+ "ValidateRangeMax": 10080,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeCount",
+ "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": 3,
+ "ValidateRangeMax": 200,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeSize",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "Small",
+ "Medium",
+ "Large"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SparkVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "LibraryRequirementsFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AzSynapseSqlDatabase",
+ "Name": "Get-AzSynapseSqlDatabase",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseSqlDatabase",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "GetByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData",
+ "Tags": "System.Collections.Hashtable",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlDatabase",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "GetByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "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": 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": "GetByParentObjectParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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": "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": 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": "New",
+ "NounName": "AzSynapseSqlDatabase",
+ "Name": "New-AzSynapseSqlDatabase",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.NewAzureSynapseSqlDatabase",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData",
+ "Tags": "System.Collections.Hashtable",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlDatabase",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "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": "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": "Collation",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "MaxSizeInBytes",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, 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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "CreateByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Collation",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "MaxSizeInBytes",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, 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": "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": -2147483648,
+ "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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "CreateByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Collation",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "MaxSizeInBytes",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, 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": "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": -2147483648,
+ "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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "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": -2147483648,
+ "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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AzSynapseSqlDatabase",
+ "Name": "Remove-AzSynapseSqlDatabase",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.RemoveAzureSynapseSqlDatabase",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "DeleteByNameParameterSet",
+ "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": "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData",
+ "Tags": "System.Collections.Hashtable",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlDatabase",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "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.4.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": "DeleteByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "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": -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.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DeleteByParentObjectParameterSet",
+ "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DeleteByInputObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData",
+ "Tags": "System.Collections.Hashtable",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlDatabase",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "DeleteByResourceIdParameterSet",
+ "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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "Test",
+ "NounName": "AzSynapseSqlDatabase",
+ "Name": "Test-AzSynapseSqlDatabase",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.TestAzureSynapseSqlDatabase",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "TestByNameParameterSet",
+ "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": "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "TestByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "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": -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": "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": -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": "TestByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "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": -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": "Update",
+ "NounName": "AzSynapseSqlDatabase",
+ "Name": "Update-AzSynapseSqlDatabase",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.UpdateAzureSynapseSqlDatabase",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "UpdateByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData",
+ "Tags": "System.Collections.Hashtable",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlDatabase",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": "MaxSizeInBytes",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, 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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData",
+ "Tags": "System.Collections.Hashtable",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlDatabase",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "UpdateByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MaxSizeInBytes",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, 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": "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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "UpdateByParentObjectParameterSet",
+ "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MaxSizeInBytes",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, 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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "UpdateByInputObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.Synapse.Models.PSSystemData",
+ "Tags": "System.Collections.Hashtable",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlDatabase",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "UpdateByResourceIdParameterSet",
+ "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": 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": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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.4.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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "AzSynapseSqlPoolRestorePoint",
+ "Name": "Get-AzSynapseSqlPoolRestorePoint",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.GetAzureSynapseSqlPoolRestorePoint",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "GetByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "RestorePointType": "System.Nullable`1[Microsoft.Azure.Management.Synapse.Models.RestorePointType]",
+ "EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
+ "RestorePointCreationDate": "System.Nullable`1[System.DateTime]",
+ "Location": "System.String",
+ "RestorePointLabel": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "restorePoint",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "GetByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "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": -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": "GetByParentObjectParameterSet",
+ "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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": "GetByInputObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "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": "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": 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": "New",
+ "NounName": "AzSynapseSqlPoolRestorePoint",
+ "Name": "New-AzSynapseSqlPoolRestorePoint",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.NewAzureSynapseSqlPoolRestorePoint",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "RestorePointType": "System.Nullable`1[Microsoft.Azure.Management.Synapse.Models.RestorePointType]",
+ "EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
+ "RestorePointCreationDate": "System.Nullable`1[System.DateTime]",
+ "Location": "System.String",
+ "RestorePointLabel": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "restorePoint",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "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": "RestorePointLabel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "CreateByNameParameterSet",
+ "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": false
+ },
+ {
+ "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RestorePointLabel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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.4.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": "CreateByParentObjectParameterSet",
+ "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RestorePointLabel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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.4.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": "CreateByInputObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RestorePointLabel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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.4.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": "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": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RestorePointLabel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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.4.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": "RestorePointLabel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": 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.4.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": "Restore",
+ "NounName": "AzSynapseSqlPool",
+ "Name": "Restore-AzSynapseSqlPool",
+ "ClassName": "Microsoft.Azure.Commands.Synapse.RestoreAzureSynapseSqlPool",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "RestoreFromBackupIdByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "FromBackup",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "FromRestorePoint",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "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": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "WorkspaceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultDataLakeStorage": "Microsoft.Azure.Commands.Synapse.Models.PSDataLakeStorageAccountDetails",
+ "Identity": "Microsoft.Azure.Commands.Synapse.Models.PSManagedIdentity",
+ "VirtualNetworkProfile": "Microsoft.Azure.Commands.Synapse.Models.PSVirtualNetworkProfile",
+ "ConnectivityEndpoints": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "PrivateEndpointConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Synapse.Models.PSPrivateEndpointConnection]",
+ "Tags": "System.Collections.Hashtable",
+ "ManagedResourceGroupName": "System.String",
+ "ProvisioningState": "System.String",
+ "SqlAdministratorLogin": "System.String",
+ "ManagedVirtualNetwork": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "workspace",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "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": "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": "PerformanceLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "BackupResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "BackupWorkspaceName",
+ "AliasList": [
+ "BackupServerName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "BackupSqlPoolName",
+ "AliasList": [
+ "BackupDatabaseName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "BackupSqlPoolObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "BackupResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "SourceResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "SourceWorkspaceName",
+ "AliasList": [
+ "SourceServerName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "SourceSqlPoolName",
+ "AliasList": [
+ "SourceDatabaseName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "SourceSqlPoolObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Synapse.Models",
+ "Name": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool, Microsoft.Azure.PowerShell.Cmdlets.Synapse, Version=0.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sku": "Microsoft.Azure.Commands.Synapse.Models.PSSynapseSku",
+ "Tags": "System.Collections.Hashtable",
+ "RestorePointInTime": "System.Nullable`1[System.DateTime]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "MaxSizeBytes": "System.Nullable`1[System.Int64]",
+ "Collation": "System.String",
+ "SourceDatabaseId": "System.String",
+ "RecoverableDatabaseId": "System.String",
+ "ProvisioningState": "System.String",
+ "Status": "System.String",
+ "CreateMode": "System.String",
+ "TagsTable": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "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": "sqlPool",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SourceResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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": "RestorePoint",
+ "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": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "RestoreFromBackupIdByNameParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "FromBackup",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.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": "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": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WorkspaceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "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,